import { IContext, IListRequest, IListResponse, IResponse } from '../../types'; import { IGenAiKnowledgeBase } from '..'; export interface IListKnowledgeBasesApiResponse extends IListResponse { knowledge_bases: IGenAiKnowledgeBase[]; } export type ListKnowledgeBasesResponse = IResponse; export declare const listKnowledgeBases: ({ httpClient }: IContext) => (options?: IListRequest) => Promise>;