import { EmbeddedWalletChainEnum } from '@dynamic-labs/sdk-api-core'; import { WebAuthnAttestation } from '@dynamic-labs/wallet-connector-core'; import { WalletOption } from '../../../shared'; type MutationProps = { environmentId: string; walletConnectorOptions: WalletOption[]; withAuthenticator: boolean; options?: { webAuthnAttestation: WebAuthnAttestation; }; chains?: EmbeddedWalletChainEnum[]; }; export declare const getEmbeddedChain: (chainName: string) => EmbeddedWalletChainEnum.Evm | EmbeddedWalletChainEnum.Sol | EmbeddedWalletChainEnum.Btc; export declare const useCreateDynamicEmbeddedWalletMutation: () => { createDynamicEmbeddedWalletMutation: ({ environmentId, walletConnectorOptions, withAuthenticator, options, chains, }: MutationProps) => Promise; error: unknown; isLoading: boolean; }; export {};