import type { Catalog } from './catalog'; declare class Translator { private locale; private catalog; __(key: string): string; constructor(catalog?: Catalog); setLocale(locale: string): void; translate(key: string): string | undefined; translateApiHelp(key: string): string | undefined; private find; } export default Translator;