declare type Asset = { amount: number; canisterId: string; decimals: number; image?: string; name: string; symbol: string; }; export declare const useBalance: () => readonly [Asset[] | undefined, { readonly loading: boolean; readonly error: { kind: WalletErrors; } | undefined; readonly refetch: () => Promise; }]; export {};