import { UseQueryOptions } from '@tanstack/react-query'; import type { SalesforceExecution } from '../schemas/SalesforceExecution'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetProjectScopedSalesforceExecutionQueryPathParams { org: string; project: string; salesforceExecution: string; } export interface GetProjectScopedSalesforceExecutionQueryHeaderParams { 'Harness-Account'?: string; } export type GetProjectScopedSalesforceExecutionOkResponse = ResponseWithPagination; export type GetProjectScopedSalesforceExecutionErrorResponse = unknown; export interface GetProjectScopedSalesforceExecutionProps extends GetProjectScopedSalesforceExecutionQueryPathParams, Omit, 'url'> { } export declare function getProjectScopedSalesforceExecution(props: GetProjectScopedSalesforceExecutionProps): Promise; /** * Retrieve a Salesforce Execution */ export declare function useGetProjectScopedSalesforceExecutionQuery(props: GetProjectScopedSalesforceExecutionProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;