import { UseMutationOptions } from '@tanstack/react-query'; import type { SalesforceComparisonPair } from '../schemas/SalesforceComparisonPair'; import type { SalesforceComparisonPairCreateRequest } from '../schemas/SalesforceComparisonPairCreateRequest'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateProjectScopedSalesforceComparisonPairMutationPathParams { org: string; project: string; } export interface CreateProjectScopedSalesforceComparisonPairMutationHeaderParams { 'Harness-Account'?: string; } export type CreateProjectScopedSalesforceComparisonPairRequestBody = SalesforceComparisonPairCreateRequest; export type CreateProjectScopedSalesforceComparisonPairOkResponse = ResponseWithPagination; export type CreateProjectScopedSalesforceComparisonPairErrorResponse = unknown; export interface CreateProjectScopedSalesforceComparisonPairProps extends CreateProjectScopedSalesforceComparisonPairMutationPathParams, Omit, 'url'> { body: CreateProjectScopedSalesforceComparisonPairRequestBody; } export declare function createProjectScopedSalesforceComparisonPair(props: CreateProjectScopedSalesforceComparisonPairProps): Promise; /** * Create a Salesforce Comparison Pair */ export declare function useCreateProjectScopedSalesforceComparisonPairMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;