import { UseQueryOptions } from '@tanstack/react-query'; import type { SalesforceChangeset } from '../schemas/SalesforceChangeset'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetProjectScopedSalesforceChangesetQueryPathParams { org: string; project: string; salesforceChangeset: string; } export interface GetProjectScopedSalesforceChangesetQueryHeaderParams { 'Harness-Account'?: string; } export type GetProjectScopedSalesforceChangesetOkResponse = ResponseWithPagination; export type GetProjectScopedSalesforceChangesetErrorResponse = unknown; export interface GetProjectScopedSalesforceChangesetProps extends GetProjectScopedSalesforceChangesetQueryPathParams, Omit, 'url'> { } export declare function getProjectScopedSalesforceChangeset(props: GetProjectScopedSalesforceChangesetProps): Promise; /** * Retrieve a Salesforce Changeset */ export declare function useGetProjectScopedSalesforceChangesetQuery(props: GetProjectScopedSalesforceChangesetProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;