import { OTPInputProps } from 'input-otp'; import { InputPinStyles } from './input-pin.css'; import * as React from 'react'; type InputPinProps = OTPInputProps & InputPinStyles; declare const InputPin: React.ForwardRefExoticComponent>; declare const InputPinGroup: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & React.RefAttributes>; declare const InputPinSlot: React.ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { index: number; } & React.RefAttributes>; interface InputPinSeparatorProps extends React.ComponentPropsWithoutRef<'div'> { innerClassName?: string; orientation?: 'horizontal' | 'vertical'; } declare const InputPinSeparator: React.ForwardRefExoticComponent>; export { InputPin, InputPinGroup, InputPinSlot, InputPinSeparator }; //# sourceMappingURL=input-pin.d.ts.map