import type { Constructable } from '../decorator/type/constructable.ts'; type UnionToIntersection = (U extends any ? (k: U) => void : never) extends (k: infer I) => void ? I : never; type ClassRefsToConstructors = { [U in keyof T]: T[U] extends Constructable ? V : never; }; type Intersection = Constructable[number]>>; export declare function MixinClass(...classRefs: T): Intersection; export {}; //# sourceMappingURL=mixinClass.d.ts.map