import { IContext, IResponse } from '../../types'; import { IGenAiAgent } from '..'; export interface IAttachKnowledgeBaseApiResponse { agent: IGenAiAgent; } export interface IAttachKnowledgeBaseApiRequest { agent_uuid: string; knowledge_base_uuid: string; } export type AttachKnowledgeBaseResponse = IResponse; export declare const attachKnowledgeBase: ({ httpClient }: IContext) => ({ agent_uuid, knowledge_base_uuid }: IAttachKnowledgeBaseApiRequest) => Promise>;