import { Dispose } from './dispose'; export declare abstract class DomNode implements Dispose { el: HTMLElement; constructor(container?: HTMLElement, tag?: string | HTMLElement, attrs?: Record, children?: string | Node[], classPrefix?: string); injectStyle(style?: Partial): void; abstract removeAllEventListener(): void; dispose(): void; }