import { HTMLProps } from 'react';
export interface PinInputProps extends Omit, 'children' | 'size' | 'onChange'> {
/**
* Sets the size of the component
*/
size?: 'sm' | 'md' | 'lg';
/**
* Sets the variant of the component
*/
variant?: 'outline' | 'inline';
/**
* Sets the status of the component
*/
status?: 'normal' | 'error' | 'success';
/**
* Sets the value of the pin input fields
*/
value?: string;
/**
* Sets the valueLength of the pin input fields
*/
valueLength?: number;
/**
* Sets the onChage of the pin input fields
*/
onChange?: (value: string) => void;
}