import { ChainId, type ChainType, type ExtendedChain } from '@openocean.finance/widget-types'; import type { SDKProvider } from './core/types.js'; import type { RPCUrls, SDKBaseConfig, SDKConfig } from './types/internal.js'; export declare const config: { loading: Promise; get(): SDKBaseConfig; set(options: SDKConfig): SDKBaseConfig; getProvider(type: ChainType): SDKProvider | undefined; setProviders(providers: SDKProvider[]): void; setChains(chains: ExtendedChain[]): void; getChains(): Promise; getChainById(chainId: ChainId): Promise; setRPCUrls(rpcUrls: RPCUrls, skipChains?: ChainId[]): void; getRPCUrls(): Promise>>; }; //# sourceMappingURL=config.d.ts.map