interface UsePinInputProps { pinCount: number; value?: number[]; onChange?(value: number[]): void; } export declare const AVAILABLE_PINS: any[]; export declare const usePinInput: ({ pinCount, value: valueProp, onChange, }: UsePinInputProps) => { value: any; setInputRefByIndex: (index: number, ref: HTMLLabelElement | null) => void; handleClickValue: (enteredValue: number) => void; handleClickBackspace: () => void; handleButton: (index: number, button: string) => void; }; export {};