import { UseQueryOptions } from '@tanstack/react-query'; import type { ServiceResponseResponse } from '../responses/ServiceResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetOrgScopedServiceQueryPathParams { org: string; service: string; } export interface GetOrgScopedServiceQueryHeaderParams { 'Harness-Account'?: string; } export type GetOrgScopedServiceOkResponse = ResponseWithPagination; export type GetOrgScopedServiceErrorResponse = unknown; export interface GetOrgScopedServiceProps extends GetOrgScopedServiceQueryPathParams, Omit, 'url'> { } export declare function getOrgScopedService(props: GetOrgScopedServiceProps): Promise; /** * Retrieves the specified service */ export declare function useGetOrgScopedServiceQuery(props: GetOrgScopedServiceProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;