import { type XYChartState } from '../types/state.js'; import { XYChartAxisProps, XYChartChartLegendProps, XYChartConfigProperties, XYChartNumericalAxisProps, XYChartToolbarProps } from '../types/xy-chart.js'; export declare const DEFAULT_CHART_HEIGHT = 300; export declare const DEFAULT_COLOR_PALETTE = "blue"; export declare const DEFAULT_LOADING_STATE = false; type XYChartAxisDefaults = Pick & Pick; export declare const DEFAULT_AXIS_CONFIG: XYChartAxisDefaults; export declare const DEFAULT_LEGEND_RANGE_FORMATTER: { maximumFractionDigits: number; }; export declare const initialState: XYChartState; export declare const defaultLegend: XYChartChartLegendProps; export declare const defaultToolbar: XYChartToolbarProps; export declare const defaultConfig: XYChartConfigProperties; export declare const XY_CHART_ARIA_LABEL = "XY Chart"; /** Annotations bottom padding in pixels */ export declare const ANNOTATIONS_PADDING_BOTTOM = 6; export {};