import { default as React } from 'react'; export interface CodeInputProps { title?: string; tip?: string; secondsUntilRetry?: number; codeLength?: 4 | 6; hasError?: boolean; codeCompleted: (code: string) => void; timeOut: () => void; resendClick: () => void; } export declare const CodeInput: React.FC;