/**
 * @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<T>(copyFrom: T, copyTo: T): T;
}
