import { type FC, type PropsWithChildren } from 'react'; import type { Locale } from '@ant-design/web3-common'; import type { WalletFactory } from '../wallets/types'; export interface BitcoinWeb3ConfigProviderProps { wallets?: WalletFactory[]; locale?: Locale; balance?: boolean; autoConnect?: boolean; } export declare const BitcoinWeb3ConfigProvider: FC>;