@turnkey/react-wallet-kit
Version:
The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.
21 lines • 736 B
TypeScript
import { OtpType } from "@turnkey/core";
interface OtpVerificationProps {
contact: string;
otpId: string;
otpEncryptionTargetBundle: string;
otpType: OtpType;
otpLength?: number | undefined;
alphanumeric?: boolean | undefined;
formattedContact?: string;
sessionKey?: 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