export declare const LANGUAGES: {
    readonly en_US: "English (US)";
    readonly en_UK: "English (UK)";
    readonly es: "Spanish";
    readonly fr: "French";
    readonly de: "German";
    readonly pt: "Portuguese";
    readonly it: "Italian";
    readonly ru: "Russian";
    readonly zh: "Mandarin Chinese";
    readonly ja: "Japanese";
};
export declare const LOCALES: Locale[];
export type Locale = keyof typeof LANGUAGES;
declare function translate(text: string, locale: Locale): string;
export default translate;
