/** * OTP Input component for @ollaid/native-sso */ interface OTPInputProps { length?: 6 | 8; value: string; onChange: (value: string) => void; onComplete?: (value: string) => void; disabled?: boolean; autoFocus?: boolean; } export declare function OTPInput({ length, value, onChange, onComplete, disabled, autoFocus, }: OTPInputProps): import("react/jsx-runtime").JSX.Element; export default OTPInput;