@turnkey/react-wallet-kit
Version:
The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.
19 lines • 648 B
TypeScript
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