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 GetAccountScopedServiceQueryPathParams { service: string; } export interface GetAccountScopedServiceQueryHeaderParams { 'Harness-Account'?: string; } export type GetAccountScopedServiceOkResponse = ResponseWithPagination; export type GetAccountScopedServiceErrorResponse = unknown; export interface GetAccountScopedServiceProps extends GetAccountScopedServiceQueryPathParams, Omit, 'url'> { } export declare function getAccountScopedService(props: GetAccountScopedServiceProps): Promise; /** * Retrieves the specified service */ export declare function useGetAccountScopedServiceQuery(props: GetAccountScopedServiceProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;