/** * A utility to combine the properties of multiple classes */ export declare class MixinUtil { /** * * @param derivedCtor - The object to receive the new properties * @param baseCtors - The objects from which to copy properties */ static ApplyMixins(derivedCtor: any, baseCtors: any[]): void; }