type CodeInputProps = { value: string; onValueChange: (value: string) => void; length: number; onValidate: (value: string) => boolean; variant?: "primary" | "neutral"; }; export declare const CodeInput: ({ length, value, onValueChange, variant, onValidate }: CodeInputProps) => import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=CodeInput.d.ts.map