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 DeleteServiceMutationPathParams { org: string; project: string; service: string; } export interface DeleteServiceMutationQueryParams { forceDelete?: boolean; } export interface DeleteServiceMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteServiceOkResponse = ResponseWithPagination; export type DeleteServiceErrorResponse = unknown; export interface DeleteServiceProps extends DeleteServiceMutationPathParams, Omit, 'url'> { queryParams: DeleteServiceMutationQueryParams; } export declare function deleteService(props: DeleteServiceProps): Promise; /** * Deletes the requested service. */ export declare function useDeleteServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;