/** * @namespace toolkit.utils */ /** * @class toolkit.utils.ObjectCopier * @classdesc Copies object properties from one object to another. */ export declare class ObjectCopier { /** * copies object properties from one object to another. */ static copyObject(copyFrom: T, copyTo: T): T; }