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 UpdateAccountScopedServiceMutationPathParams { service: string; } export interface UpdateAccountScopedServiceMutationHeaderParams { 'Harness-Account'?: string; } export type UpdateAccountScopedServiceRequestBody = ServiceUpdateRequestRequestBody; export type UpdateAccountScopedServiceOkResponse = ResponseWithPagination; export type UpdateAccountScopedServiceErrorResponse = unknown; export interface UpdateAccountScopedServiceProps extends UpdateAccountScopedServiceMutationPathParams, Omit, 'url'> { body: UpdateAccountScopedServiceRequestBody; } export declare function updateAccountScopedService(props: UpdateAccountScopedServiceProps): Promise; /** * Updates the specified service */ export declare function useUpdateAccountScopedServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;