import { UseMutationOptions } from '@tanstack/react-query'; import type { ServiceResponseResponse } from '../responses/ServiceResponseResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteAccountScopedServiceMutationPathParams { service: string; } export interface DeleteAccountScopedServiceMutationQueryParams { forceDelete?: boolean; } export interface DeleteAccountScopedServiceMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteAccountScopedServiceOkResponse = ResponseWithPagination; export type DeleteAccountScopedServiceErrorResponse = unknown; export interface DeleteAccountScopedServiceProps extends DeleteAccountScopedServiceMutationPathParams, Omit, 'url'> { queryParams: DeleteAccountScopedServiceMutationQueryParams; } export declare function deleteAccountScopedService(props: DeleteAccountScopedServiceProps): Promise; /** * Deletes the requested service */ export declare function useDeleteAccountScopedServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;