import { IContext, IResponse } from '../../types'; import { IGenAiKnowledgeBase, IGenAiKnowledgeBaseCreateRequest } from '..'; export interface ICreateKnowledgeBaseApiResponse { knowledge_base: IGenAiKnowledgeBase; } export type CreateKnowledgeBaseResponse = IResponse; export declare const createKnowledgeBase: ({ httpClient }: IContext) => (knowledgeBase: IGenAiKnowledgeBaseCreateRequest) => Promise>;