import type { MixElement } from '../render/mixElement.js'; export type MixElementConstructor = { new (): T; } & { [Key in keyof typeof MixElement]: typeof MixElement[Key]; };