import { IContext, IResponse } from '../../types'; import { IGenAiIndexingJob } from '..'; export interface IGetIndexingJobApiResponse { indexing_job: IGenAiIndexingJob; } export interface IGetIndexingJobApiRequest { indexing_job_uuid: string; } export type GetIndexingJobResponse = IResponse; export declare const getIndexingJob: ({ httpClient }: IContext) => ({ indexing_job_uuid }: IGetIndexingJobApiRequest) => Promise>;