export declare const I18nFr: I18nInterface;
export declare const I18nEn: I18nInterface;
export declare const i18nLanguages: {
    [name: string]: I18nInterface;
};
export interface I18nInterface {
    saveBtn?: string;
    cancelBtn?: string;
    loadImage?: string;
    loadImageUrl?: string;
    loading?: string;
    loadError?: string;
    removeImage?: string;
    sizes?: {
        [name: string]: string;
    };
    undo?: string;
    redo?: string;
    clear?: string;
    colors?: {
        [name: string]: string;
    };
    tools?: {
        [name: string]: string;
    };
}
