import '@web3modal/polyfills'; import type { ProviderType } from './types.js'; type ArrayOneOrMore = { 0: T; } & T[]; export interface ConfigOptions { projectId: string; chains?: number[]; optionalChains: ArrayOneOrMore; enableEIP6963?: boolean; } export declare function defaultConfig({ projectId, chains, optionalChains, enableEIP6963 }: ConfigOptions): Promise; export {};