import { IContext, IResponse } from '../../types';
export interface IDetachKnowledgeBaseApiRequest {
    agent_uuid: string;
    knowledge_base_uuid: string;
}
export type DetachKnowledgeBaseResponse = IResponse<void>;
export declare const detachKnowledgeBase: ({ httpClient }: IContext) => ({ agent_uuid, knowledge_base_uuid }: IDetachKnowledgeBaseApiRequest) => Promise<Readonly<DetachKnowledgeBaseResponse>>;
