@turnkey/react-wallet-kit
Version:
The easiest and most powerful way to integrate Turnkey's Embedded Wallets into your React applications.
20 lines • 891 B
TypeScript
import { KeyFormat } from "@turnkey/iframe-stamper";
import { TurnkeyError, v1AddressFormat, v1Curve, v1WalletAccountParams } from "@turnkey/sdk-types";
import { type StamperType } from "@turnkey/core";
import { ImportType } from "../../types/base";
export declare function ImportComponent(props: {
importType: ImportType;
defaultWalletAccounts?: v1AddressFormat[] | v1WalletAccountParams[];
addressFormats?: v1AddressFormat[] | undefined;
curve?: v1Curve | undefined;
keyFormat?: KeyFormat | undefined;
onSuccess: (id: string) => void;
onError: (error: TurnkeyError) => void;
successPageDuration?: number | undefined;
stampWith?: StamperType | undefined;
clearClipboardOnPaste?: boolean | undefined;
name?: string;
organizationId?: string;
userId?: string;
}): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=Import.d.ts.map