import { IContext, IListResponse, IResponse, IListRequest } from '../../types'; import { IGenAiIndexingJob } from '..'; export interface IListIndexingJobsApiResponse extends IListResponse { indexing_jobs: IGenAiIndexingJob[]; } export interface IListIndexingJobsApiRequest extends IListRequest { } export type ListIndexingJobsResponse = IResponse; export declare const listIndexingJobs: ({ httpClient }: IContext) => ({ page, per_page }: IListIndexingJobsApiRequest) => Promise>;