export declare class ObjectUtils {
    static deepFreeze(o: {
        [k: string]: any;
    }): {
        [k: string]: any;
    };
}
