import { UseMutationOptions } from '@tanstack/react-query'; import type { SalesforceChangeset } from '../schemas/SalesforceChangeset'; import type { SalesforceChangesetUpdateRequest } from '../schemas/SalesforceChangesetUpdateRequest'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface UpdateProjectScopedSalesforceChangesetMutationPathParams { org: string; project: string; salesforceChangeset: string; } export interface UpdateProjectScopedSalesforceChangesetMutationHeaderParams { 'Harness-Account'?: string; } export type UpdateProjectScopedSalesforceChangesetRequestBody = SalesforceChangesetUpdateRequest; export type UpdateProjectScopedSalesforceChangesetOkResponse = ResponseWithPagination; export type UpdateProjectScopedSalesforceChangesetErrorResponse = unknown; export interface UpdateProjectScopedSalesforceChangesetProps extends UpdateProjectScopedSalesforceChangesetMutationPathParams, Omit, 'url'> { body: UpdateProjectScopedSalesforceChangesetRequestBody; } export declare function updateProjectScopedSalesforceChangeset(props: UpdateProjectScopedSalesforceChangesetProps): Promise; /** * Update a Salesforce Changeset */ export declare function useUpdateProjectScopedSalesforceChangesetMutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;