import { UseQueryOptions } from '@tanstack/react-query'; import type { SalesforcePipelineMappingsDto } from '../schemas/SalesforcePipelineMappingsDto'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetProjectScopedSalesforcePipelineMappingsQueryPathParams { org: string; project: string; } export interface GetProjectScopedSalesforcePipelineMappingsQueryHeaderParams { 'Harness-Account'?: string; } export type GetProjectScopedSalesforcePipelineMappingsOkResponse = ResponseWithPagination; export type GetProjectScopedSalesforcePipelineMappingsErrorResponse = unknown; export interface GetProjectScopedSalesforcePipelineMappingsProps extends GetProjectScopedSalesforcePipelineMappingsQueryPathParams, Omit, 'url'> { } export declare function getProjectScopedSalesforcePipelineMappings(props: GetProjectScopedSalesforcePipelineMappingsProps): Promise; /** * Returns a map of Salesforce execution use cases to default pipeline identifiers */ export declare function useGetProjectScopedSalesforcePipelineMappingsQuery(props: GetProjectScopedSalesforcePipelineMappingsProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;