import { UseMutationOptions } from '@tanstack/react-query'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteProjectScopedSalesforceComparisonPairMutationPathParams { org: string; project: string; salesforceComparisonPair: string; } export interface DeleteProjectScopedSalesforceComparisonPairMutationHeaderParams { 'Harness-Account'?: string; } export type DeleteProjectScopedSalesforceComparisonPairOkResponse = ResponseWithPagination; export type DeleteProjectScopedSalesforceComparisonPairErrorResponse = unknown; export interface DeleteProjectScopedSalesforceComparisonPairProps extends DeleteProjectScopedSalesforceComparisonPairMutationPathParams, Omit, 'url'> { } export declare function deleteProjectScopedSalesforceComparisonPair(props: DeleteProjectScopedSalesforceComparisonPairProps): Promise; /** * Delete a Salesforce Comparison Pair */ export declare function useDeleteProjectScopedSalesforceComparisonPairMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;