import { OtpType } from "@turnkey/core";
interface OtpVerificationProps {
    contact: string;
    otpId: string;
    otpType: OtpType;
    otpLength?: number;
    alphanumeric?: boolean;
    formattedContact?: string;
    onContinue?: (optCode: string) => Promise<void>;
}
export declare function OtpVerification(props: OtpVerificationProps): import("react/jsx-runtime").JSX.Element;
interface OtpInputProps {
    otpLength: number;
    onContinue: (otpCode: string) => void;
    alphanumeric?: boolean;
}
export declare function OtpInput(props: OtpInputProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=OTP.d.ts.map