type OneTimePasswordInputProps = { value?: string; onChange: (value: string) => void; passwordLength?: number; error?: boolean; disabled?: boolean; }; declare function OneTimePasswordInput({ passwordLength, value, onChange, error, disabled, }: OneTimePasswordInputProps): import("react/jsx-runtime").JSX.Element; export type { OneTimePasswordInputProps }; export { OneTimePasswordInput };