import * as React from "react"; export interface ICodeInputProps extends React.HTMLAttributes { lengthPerBox?: number[]; onCodeChange?: (value: string | number) => void; value?: string; placeholder?: string; type?: string; numeric?: boolean; readonly?: boolean; } export declare const CodeInput: React.FC;