export declare const CodeInput: import("react").FunctionComponent & { view?: string; size?: string; placeholder?: string; autoFocus?: boolean; codeLength?: 4 | 5 | 6; caption?: import("react").ReactNode; captionAlign?: "left" | "center"; hidden?: boolean; disabled?: boolean; width?: import("react").CSSProperties["width"]; allowedSymbols?: string | RegExp; itemErrorBehavior?: import("../../../components/CodeInput/CodeInput.types").ItemErrorBehavior; codeErrorBehavior?: import("../../../components/CodeInput/CodeInput.types").CodeErrorBehavior; isError?: boolean; setIsError?: import("react").Dispatch>; onChange?: (value: string) => void; onFullCodeEnter?: (code: string) => void; } & Pick, "inputMode" | "aria-label" | "autoComplete"> & Omit, "onChange"> & import("react").RefAttributes>; //# sourceMappingURL=CodeInput.d.ts.map