export declare const translations: {
    locale: string;
    name: string;
    data: ({
        key: string;
        value: string;
        isDuplicated?: undefined;
    } | {
        key: string;
        value: string;
        isDuplicated: boolean;
    } | {
        key: string;
        value: string;
        isDuplicated: string;
    })[];
}[];
