export declare type LangOptions = { /** * The text to display when the chart contains no data. * Defaults to 暂无数据. */ noData?: string; /** * An array containing the months names. Corresponds to the %B format in Highcharts.dateFormat(). * * Defaults to ['一月', '二月', '三月', '四月', '五月', '六月', '七月', '八月', '九月', '十月', '十一月', '十二月']. */ months?: string[]; /** * An array containing the months names in abbreviated form. Corresponds to the %b format in Highcharts.dateFormat(). * * Defaults to ['1月', '2月', '3月', '4月', '5月', '6月', '7月', '8月', '9月', '10月', '11月', '12月']. */ shortMonths?: string[]; /** * An array containing the weekday names. * * Defaults to ['星期天', '星期一', '星期二', '星期三', '星期四', '星期五', '星期六']. */ weekdays?: string[]; /** * The loading text that appears when the chart is set into the loading state following a call to chart.showLoading. * * Defaults to 加载中.... */ loading?: string; /** * The text for the label appearing when a chart is zoomed. * * Defaults to 重置. */ resetZoom?: string; }; export declare function createHighLangOptions(options?: LangOptions): Highcharts.LangOptions;