export type OtpInputSize = "sm" | "md" | "lg"; export interface OtpInputOptions { selector: string; label?: string; length?: number; type?: "numeric" | "alphanumeric"; mask?: boolean; autoFocus?: boolean; disabled?: boolean; size?: OtpInputSize; value?: string; helpText?: string; errorText?: string; hydrate?: boolean; onChange?: (code: string) => void; onComplete?: (code: string) => void; } //# sourceMappingURL=OtpInput.types.d.ts.map