import { QueryObserverOptions } from '@tanstack/react-query'; import { FunctionKeyV2 } from '../../constants'; import { GetJobScopeInput, GetJobScopeOutput } from './types'; export type UseGetJobScope = [FunctionKeyV2.GET_JOB_SCOPE, GetJobScopeInput]; type Options = QueryObserverOptions; export declare const useGetJobScope: (input: GetJobScopeInput, options?: Omit) => import('@tanstack/react-query').UseQueryResult; export {};