import { Wallet } from '../../../../shared'; type Props = { wallet?: Wallet; chain: string | undefined; network: number | string | undefined; }; export declare const useFetchBalance: ({ wallet, chain, network }: Props) => { balance: string | undefined; isLoading: boolean; }; export {};