import { Disposable } from '../types'; export declare class Component implements Disposable { el: HTMLElement; constructor(container?: HTMLElement, desc?: string | HTMLElement, attrs?: { [key: string]: any; }, children?: string | Array, classPrefix?: string); applyStyle(style: Partial): void; dispose(): void; }