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