import { ChainEnum, WalletProviderEnum, AuthModeEnum } from '@dynamic-labs/sdk-api-core'; import { AuthMode } from '@dynamic-labs/types'; export declare const mapChainToChainEnum: (chain: string) => ChainEnum; export declare const mapProviderToProviderEnum: (provider: string) => WalletProviderEnum; export declare const mapAuthModeToEnum: (authMode: AuthMode) => AuthModeEnum; export declare const createVisit: ({ authMode, chain, environmentId, walletProvider, publicWalletAddress, walletName, }: { authMode: AuthMode; chain: string; environmentId: string; publicWalletAddress: string; walletName: string; walletProvider: string; }) => Promise;