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