export type Locale = {
    locale: string;
    general: {
        increase: string;
        decrease: string;
        root: string;
    };
    /** 中心文本 */
    statistic: {
        total: string;
    };
    /** 转化率组件 */
    conversionTag: {
        label: string;
    };
    legend?: Record<string, string>;
    tooltip?: Record<string, string>;
    slider?: Record<string, string>;
    scrollbar?: Record<string, string>;
    waterfall: {
        /** 总计或累计值 */
        total: string;
    };
};
