import type { ParsedComponent } from "../../types";
export declare class ParsedNode {
private readonly data;
private readonly childrenIds;
constructor(data: ParsedComponent, childrenIds: string[]);
get children(): ParsedNode[];
get name(): string;
get definition(): ParsedComponent;
}