/** * Translate engine. */ import { Schema } from "./schema"; /** * Translate source Cyrillic string into Latin using specified schema. * Translates sentences word by word, delegating specifics of transliteration * to specified schema. */ export declare function translate(source: string, schema: Schema): string; export declare function splitSentence(source: string): string[];