/// import { Component } from "./Base"; export interface Root { element: Component; afterCommit: (host: Root) => void; } declare const _default: (props: {}) => { element: any; afterCommit: (host: Component) => void; interval: NodeJS.Timer; quit: () => void; appendChild: (child: any) => void; insertChild: (child: any, beforeChild: any) => void; removeChild: (child: any) => void; children: any[]; }; export default _default;