export declare type KeyValue = { key: string; __value__: any; [key: string]: string; }; export declare type TreeType = { [key: string]: TreeType[] | TreeType | string; };