import { UseMutationOptions } from '@tanstack/react-query'; import type { ServiceResponseResponse } from '../responses/ServiceResponseResponse'; import type { ServiceUpdateRequestRequestBody } from '../requestBodies/ServiceUpdateRequestRequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateOrgScopedServiceMutationPathParams { org: string; service: string; } export interface UpdateOrgScopedServiceMutationHeaderParams { 'Harness-Account'?: string; } export type UpdateOrgScopedServiceRequestBody = ServiceUpdateRequestRequestBody; export type UpdateOrgScopedServiceOkResponse = ResponseWithPagination; export type UpdateOrgScopedServiceErrorResponse = unknown; export interface UpdateOrgScopedServiceProps extends UpdateOrgScopedServiceMutationPathParams, Omit, 'url'> { body: UpdateOrgScopedServiceRequestBody; } export declare function updateOrgScopedService(props: UpdateOrgScopedServiceProps): Promise; /** * Updates the specified service */ export declare function useUpdateOrgScopedServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;