import { DeriveBalancesAll } from '@polkadot/api-derive/types'; import { QueryParameters } from '../../../types'; type UseDeriveBalancesAllParameters = QueryParameters & { address: string | undefined; watch?: boolean; }; declare function useDeriveBalancesAll({ address, watch, query }: UseDeriveBalancesAllParameters): import('@tanstack/react-query').UseQueryResult & { queryKey: (string | undefined)[]; }; export { useDeriveBalancesAll }; export type { UseDeriveBalancesAllParameters };