InAppWalletCreationOptions
type InAppWalletCreationOptions =  | {      auth?: {        mode?: "popup" | "redirect" | "window";        passkeyDomain?: string;        redirectUrl?: string;      };      hidePrivateKeyExport?: boolean;      metadata?: {        image?: {          alt?: string;          height?: number;          src: string;          width?: number;        };      };      partnerId?: string;    }  | undefined;