export interface Node { __name: string; __childNodes?: Node[]; } export declare function buildInitializationSequence(rootNode: T): string[][];