import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteAccountScopedInfrastructureMutationPathParams { environment: string; 'infrastructure-definition': string; } export interface DeleteAccountScopedInfrastructureMutationQueryParams { forceDelete?: boolean; } export interface DeleteAccountScopedInfrastructureMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteAccountScopedInfrastructureOkResponse = ResponseWithPagination; export type DeleteAccountScopedInfrastructureErrorResponse = {}; export interface DeleteAccountScopedInfrastructureProps extends DeleteAccountScopedInfrastructureMutationPathParams, Omit, 'url'> { queryParams: DeleteAccountScopedInfrastructureMutationQueryParams; } export declare function deleteAccountScopedInfrastructure(props: DeleteAccountScopedInfrastructureProps): Promise; /** * Deletes the requested account scoped infrastructure */ export declare function useDeleteAccountScopedInfrastructureMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;