@cerberus-design/react
Version:
The Cerberus Design React component library.
18 lines (17 loc) • 1.9 kB
TypeScript
import { PinInputVariantProps } from 'styled-system/recipes';
import { PinInput as ArkPinInput, PinInputRootProps as ArkPinInputRootProps, PinInputLabelProps as ArkPinInputLabelProps, PinInputInputProps as ArkPinInputInputProps, PinInputControlProps as ArkPinInputControlProps, PinInputHiddenInputProps as ArkPinInputHiddenInputProps } from '@ark-ui/react/pin-input';
import { CerberusPrimitiveProps } from '../../system/index';
import { ForwardRefExoticComponent, RefAttributes } from 'react';
export type PinInputRootProps = CerberusPrimitiveProps<ArkPinInputRootProps & PinInputVariantProps>;
export declare const PinInputRoot: ForwardRefExoticComponent<Omit<CerberusPrimitiveProps<ArkPinInput.RootProps & RefAttributes<HTMLDivElement>>, "ref"> & RefAttributes<unknown>>;
export type PinInputLabelProps = CerberusPrimitiveProps<ArkPinInputLabelProps>;
export declare const PinInputLabel: ForwardRefExoticComponent<Omit<CerberusPrimitiveProps<ArkPinInput.LabelProps & RefAttributes<HTMLLabelElement>>, "ref"> & RefAttributes<unknown>>;
export type PinInputControlProps = CerberusPrimitiveProps<ArkPinInputControlProps>;
export declare const PinInputControl: ForwardRefExoticComponent<Omit<CerberusPrimitiveProps<ArkPinInput.ControlProps & RefAttributes<HTMLDivElement>>, "ref"> & RefAttributes<unknown>>;
export type PinInputInputProps = CerberusPrimitiveProps<ArkPinInputInputProps & PinInputVariantProps>;
export declare const PinInputInput: ForwardRefExoticComponent<Omit<CerberusPrimitiveProps<ArkPinInput.InputProps & RefAttributes<HTMLInputElement>>, "ref"> & RefAttributes<unknown>>;
export type PinInputHiddenInputProps = CerberusPrimitiveProps<ArkPinInputHiddenInputProps>;
export declare const PinInputHiddenInput: {
(props: CerberusPrimitiveProps<ArkPinInput.HiddenInputProps & RefAttributes<HTMLInputElement>>): import("react/jsx-runtime").JSX.Element;
displayName: string;
};