export interface IJsonListEntry { leaf: string; value: string | number; } export declare class JsonListBuilder { static convertJsonKeysToBracketedList(json: any, ignoreList?: string[]): IJsonListEntry[]; static escapeForRegEx(item: string): string; private static processKeys; }