import type { IListenable } from "./IListenable";
import type { ITransformSettable } from "./ITransformSettable";
import type { IResizable } from "./IResizable";
import type { IMeasurable } from "./IMeasurable";
import type { IStyleable } from "./IStyleable";
export interface IDomWrapable extends IListenable, ITransformSettable, IResizable, IMeasurable, IStyleable {
    htmlEle: HTMLElement;
}
