export type PrivyWalletChain = "ethereum" | "solana"; export interface PrivyWalletAddresses { evmAddress: string | null; solanaAddress: string | null; } export interface PrivyWalletSummary { id: string; chain: PrivyWalletChain; address: string; } export interface PrivyEnsureWalletsResult extends PrivyWalletAddresses { userId: string; createdUser: boolean; wallets: PrivyWalletSummary[]; } export declare function isPrivyWalletProvisioningEnabled(env?: NodeJS.ProcessEnv): boolean; export declare function ensurePrivyWalletsForCustomUser(customUserId: string, chains?: PrivyWalletChain[], env?: NodeJS.ProcessEnv): Promise; //# sourceMappingURL=privy-wallets.d.ts.map