import { IContext, IResponse } from '../../types'; import { IGenAiAgent } from '..'; export interface IAttachKnowledgeBasesApiResponse { agent: IGenAiAgent; } export interface IAttachKnowledgeBasesApiRequest { agent_uuid: string; knowledge_base_uuids: string[]; } export type AttachKnowledgeBasesResponse = IResponse; export declare const attachKnowledgeBases: ({ httpClient }: IContext) => ({ agent_uuid, knowledge_base_uuids }: IAttachKnowledgeBasesApiRequest) => Promise>;