import Registry from "./Registry"; import Schema from "./Schema"; export default class Parser { static parseRootSchema(registry: Registry, input: any): Schema; static parseSubSchema(registry: Registry, baseURI: string, tokens: string[], input: any): Schema; private registry; private baseURI; private tokens; constructor(registry: Registry, baseURI: string, tokens: string[]); private parse; private push; private pop; }