import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteAccountScopedEnvironmentMutationPathParams { environment: string; } export interface DeleteAccountScopedEnvironmentMutationQueryParams { forceDelete?: boolean; } export interface DeleteAccountScopedEnvironmentMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteAccountScopedEnvironmentOkResponse = ResponseWithPagination; export type DeleteAccountScopedEnvironmentErrorResponse = {}; export interface DeleteAccountScopedEnvironmentProps extends DeleteAccountScopedEnvironmentMutationPathParams, Omit, 'url'> { queryParams: DeleteAccountScopedEnvironmentMutationQueryParams; } export declare function deleteAccountScopedEnvironment(props: DeleteAccountScopedEnvironmentProps): Promise; /** * Deletes the requested account scoped environment */ export declare function useDeleteAccountScopedEnvironmentMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;