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; export declare const getKnowledgeBase: ({ httpClient }: IContext) => ({ knowledge_base_uuid }: IGetKnowledgeBaseApiRequest) => Promise>;