import { InputProps } from '../Input'; export type DigitInputProps = InputProps; export interface CodeInputProps extends InputProps { autoFocus?: boolean; digits?: number; markInvalid?: boolean; onCodeComplete?: (completeCode?: string) => void; codeInputLabel?: string; codePlaceholder?: string; } export declare const CodeInput: ({ style, digits, markInvalid, onCodeComplete, disabled, codeInputLabel, codePlaceholder, }: CodeInputProps) => import("@emotion/react/jsx-runtime").JSX.Element; //# sourceMappingURL=CodeInput.d.ts.map