import { LocalesProps } from './types';
export declare class Locales {
    #private;
    [index: string]: unknown;
    constructor(props?: LocalesProps);
    private fecthTranslation;
    getCurrentLocale(): string;
    getLocales(): string[];
    translate(scope: string | string[]): any;
}
