export type ChartLocale = 'en-US' | 'zh-CN'; export type CartesianXAxisOptions = { xLabels?: unknown[]; chartWidth?: number; }; export type CartesianAxisOptions = CartesianXAxisOptions & { axisXTitle?: string | false; axisYTitle?: string | false; }; export declare const resolveChartLocale: (locale?: string) => ChartLocale; export declare const getCartesianLayout: ({ xLabels, chartWidth, }: CartesianXAxisOptions) => Record; export declare const getCartesianAxis: ({ axisXTitle, axisYTitle, xLabels, chartWidth, }: CartesianAxisOptions) => Record<'x' | 'y', Record>; export declare const getColorLegend: (visible: boolean) => false | { color: Record; };