import { UseQueryOptions } from '@tanstack/react-query'; import type { SalesforceExecutionListItem } from '../schemas/SalesforceExecutionListItem'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetProjectScopedSalesforceExecutionsQueryPathParams { org: string; project: string; } export interface GetProjectScopedSalesforceExecutionsQueryQueryParams { /** * @default 0 */ page?: number; /** * @default 20 */ limit?: number; searchTerm?: string; typeFilter?: string; changesetId?: string; } export interface GetProjectScopedSalesforceExecutionsQueryHeaderParams { 'Harness-Account'?: string; } export type GetProjectScopedSalesforceExecutionsOkResponse = ResponseWithPagination; export type GetProjectScopedSalesforceExecutionsErrorResponse = unknown; export interface GetProjectScopedSalesforceExecutionsProps extends GetProjectScopedSalesforceExecutionsQueryPathParams, Omit, 'url'> { queryParams: GetProjectScopedSalesforceExecutionsQueryQueryParams; } export declare function getProjectScopedSalesforceExecutions(props: GetProjectScopedSalesforceExecutionsProps): Promise; /** * List Salesforce Executions */ export declare function useGetProjectScopedSalesforceExecutionsQuery(props: GetProjectScopedSalesforceExecutionsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;