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 DeleteOrgScopedServiceMutationPathParams { org: string; service: string; } export interface DeleteOrgScopedServiceMutationQueryParams { forceDelete?: boolean; } export interface DeleteOrgScopedServiceMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteOrgScopedServiceOkResponse = ResponseWithPagination; export type DeleteOrgScopedServiceErrorResponse = unknown; export interface DeleteOrgScopedServiceProps extends DeleteOrgScopedServiceMutationPathParams, Omit, 'url'> { queryParams: DeleteOrgScopedServiceMutationQueryParams; } export declare function deleteOrgScopedService(props: DeleteOrgScopedServiceProps): Promise; /** * Deletes the requested service */ export declare function useDeleteOrgScopedServiceMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;