import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteProjectScopedSalesforceChangesetMutationPathParams { org: string; project: string; salesforceChangeset: string; } export interface DeleteProjectScopedSalesforceChangesetMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteProjectScopedSalesforceChangesetOkResponse = ResponseWithPagination; export type DeleteProjectScopedSalesforceChangesetErrorResponse = unknown; export interface DeleteProjectScopedSalesforceChangesetProps extends DeleteProjectScopedSalesforceChangesetMutationPathParams, Omit, 'url'> { } export declare function deleteProjectScopedSalesforceChangeset(props: DeleteProjectScopedSalesforceChangesetProps): Promise; /** * Delete a Salesforce Changeset */ export declare function useDeleteProjectScopedSalesforceChangesetMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;