import React from 'react'; export type OTPAlign = 'left' | 'center'; export interface OTPInputProps { length?: number; value?: string; error?: string; align?: OTPAlign; disabled?: boolean; title?: string; subtitle?: string; validateLabel?: string; resendLabel?: string; onBlur?: React.FocusEventHandler; onValidate?: (value: string) => void; onResend?: () => void; onChange: (val: string) => void; } export declare const OTPInput: React.FC;