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