import { KvDef } from '../core/kv'; export declare enum DynamicRouterFieldKeys { path = "path", text = "text", description = "description" } export declare class DynamicRouterConfig { textRouter: { path?: string; text?: string; }[]; constructor(o: DynamicRouterConfig); } export declare class DynamicRouterHelper { static kvDef: KvDef; static getConfig(): Promise; }