import { IContext, IResponse } from '../../types';
import { IGenAiKnowledgeBase } from '..';
export interface IGetKnowledgeBaseApiResponse {
    knowledge_base: IGenAiKnowledgeBase;
}
export interface IGetKnowledgeBaseApiRequest {
    knowledge_base_uuid: string;
}
export type GetKnowledgeBaseResponse = IResponse<IGetKnowledgeBaseApiResponse>;
export declare const getKnowledgeBase: ({ httpClient }: IContext) => ({ knowledge_base_uuid }: IGetKnowledgeBaseApiRequest) => Promise<Readonly<GetKnowledgeBaseResponse>>;
