import { Schema } from './type'; export interface TypeTree { children: Map; schema?: Schema; } export declare function buildTypeTree(schemas: IterableIterator): TypeTree;