import * as React from "react"; export type OtpInputProps = Omit, "onChange"> & { value?: string; defaultValue?: string; onValueChange?: (value: string) => void; length?: number; disabled?: boolean; inputMode?: React.HTMLAttributes["inputMode"]; pattern?: string; mask?: boolean; labels?: { group?: string; cell?: (index: number) => string; }; }; declare function OtpInput({ value, defaultValue, onValueChange, length, disabled, inputMode, pattern, mask, labels, className, ...props }: OtpInputProps): React.JSX.Element; export { OtpInput };