declare class Container { id: string; root: HTMLElement; constructor(id: string); getElement: () => HTMLElement; create: () => void; render: (children: any) => void; destroy: () => void; } export default Container;