/** * Transliteration schema registry. */ import { Schema } from "./schema"; /** * All supported transliteration schemas. */ export declare class Schemas { private static _all; /** * Lazy-loaded schema map. */ private static get all(); /** * Array of schema names. */ static names(): string[]; /** * Array of schemas. */ static values(): Schema[]; /** * Get schema by name. */ static get(name: string): Schema; }