export declare const strShimFunction = "function";
export declare const strShimObject = "object";
export declare const strShimUndefined = "undefined";
export declare const strShimPrototype = "prototype";
export declare const strShimHasOwnProperty = "hasOwnProperty";
export declare const strDefault = "default";
export declare const ObjClass: ObjectConstructor;
export declare const ObjProto: Object;
export declare const ObjAssign: {
    <T extends {}, U>(target: T, source: U): T & U;
    <T_1 extends {}, U_1, V>(target: T_1, source1: U_1, source2: V): T_1 & U_1 & V;
    <T_2 extends {}, U_2, V_1, W>(target: T_2, source1: U_2, source2: V_1, source3: W): T_2 & U_2 & V_1 & W;
    (target: object, ...sources: any[]): any;
};
export declare const ObjCreate: {
    (o: object): any;
    (o: object, properties: PropertyDescriptorMap & ThisType<any>): any;
};
export declare const ObjDefineProperty: <T>(o: T, p: PropertyKey, attributes: PropertyDescriptor & ThisType<any>) => T;
export declare const ObjHasOwnProperty: (v: PropertyKey) => boolean;
