export declare class ObjectUtil { static prefixKeys(obj: { [key: string]: T; }, prefix: string): { [key: string]: T; }; static constantizeKeys(obj: { [key: string]: T; }): { [key: string]: T; }; }