import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; import { GetWalletBalanceInput, GetWalletBalanceOutput } from './types'; export type UseGetWalletList = [ FunctionKeyV2.GET_WALLET_BALANCE, GetWalletBalanceInput ]; type Options = QueryObserverOptions; export declare const useGetWalletBalance: (input: GetWalletBalanceInput, options?: Omit) => import('@tanstack/react-query').UseQueryResult; export {};