import { type FC, type PropsWithChildren } from 'react'; import { type Wallet } from '@ant-design/web3-common'; import type { BitcoinWeb3ConfigProviderProps } from '../index'; export interface BitcoinConfigProviderProps extends Omit { wallets: Wallet[]; selectWallet: (wallet?: Wallet | null) => void; } export declare const BitcoinConfigProvider: FC>;