import { KeyIndexMap, Schema } from '@phensley/cldr-types'; import { SchemaConfig } from '../schema'; import { CalendarInternals, DateFieldInternals, GeneralInternals, Internals, NumberInternals, UnitInternals } from './internals'; /** * @internal */ export declare class InternalsImpl implements Internals { readonly schema: Schema; readonly config: SchemaConfig; readonly indices: KeyIndexMap; readonly checksum: string; readonly calendars: CalendarInternals; readonly dateFields: DateFieldInternals; readonly general: GeneralInternals; readonly numbers: NumberInternals; readonly units: UnitInternals; constructor(config: SchemaConfig, version: string, debug?: boolean, skipChecksum?: boolean, patternCacheSize?: number); }