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