import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; import { GetNetworkAgentsOutput } from './types'; export type UseGetNetworkAgents = [FunctionKeyV2.GET_NETWORK_AGENTS]; type Options = QueryObserverOptions; export declare const useGetNetworkAgents: (options?: Omit) => import('@tanstack/react-query').UseQueryResult; export {};