/** * Given an object, converts all keys to PascalCase given they are currently in camel case. * @param obj The object. */ export declare function capitalizePropertyNames(obj: any): any; /** * Turns empty arrays/objects to undefined (after evaluating tokens). */ export declare function ignoreEmpty(o: any): any;