import { Region } from './region'; import { Context } from './context'; export declare class Node { region: Region; children: Node[]; constructor(region: Region, children?: Node[]); render(ctx: Context): string; debug(indent?: string): string; }