export interface IAutocomplete { value: string; meta: string; } export interface IDbNode { name: string; type: string; children: IDbNode[]; } export declare class DbInfo { private readonly type; private readonly apiBasePath; private readonly $http; constructor(type: string, apiBasePath?: string); fetchAllKeywords(): Promise; fetchSchema(): Promise; }