import { Schema } from '@phensley/cldr-types'; import { Instruction, Origin } from '../schema'; /** * Builds the schema accessor singleton. * * @internal */ export declare class SchemaBuilder { private debug; private generator; private _times; private origin; constructor(debug: boolean); construct(obj: Schema, inst: Instruction): void; private constructDigits; private constructField; private constructOrigin; private constructScope; private constructScopeMap; private constructVector; } /** * @internal */ export declare const buildSchema: (origin: Origin, debug: boolean) => Schema;