export declare const CHART_HEIGHTS: { readonly MIN_HEIGHT: 160; readonly DESIGN_EXAMPLE_HEIGHT: 160; readonly DEFAULT_HEIGHT: 160; readonly DONUT_DEFAULT_HEIGHT: 300; }; export declare const CHART_WIDTHS: { readonly DEFAULT_WIDTH: 260; readonly LINE_CHART_DEFAULT_WIDTH: 280; }; export declare const CHART_MARGINS: { readonly LINE_CHART: { readonly top: 15; readonly right: 30; readonly bottom: 30; readonly left: 8; }; readonly BAR_CHART: { readonly top: 15; readonly right: 30; readonly bottom: 30; readonly left: 8; }; readonly DONUT_CHART: { readonly top: 20; readonly right: 20; readonly bottom: 20; readonly left: 20; }; }; export declare const CHART_HEIGHT_CALCULATIONS: { readonly LINE_CHART: 5; readonly BAR_CHART: 5; readonly DONUT_CHART: 0; }; export declare const CHART_GRID_LINES: { readonly LINE_CHART: readonly [0, 33, 65, 100]; readonly BAR_CHART: readonly [0, 15, 35, 50]; }; export declare const CHART_Y_AXIS_LABELS: { readonly LINE_CHART: readonly [100, 65, 33, 0]; readonly BAR_CHART: readonly [50, 35, 15, 0]; }; export declare const CHART_CONTAINER_PADDING: { readonly CONTAINER: "Size2"; readonly CHART_CONTAINER: "Size2"; }; export declare const CHART_TRANSITION_DURATION = 0.15; export declare const CHART_TOOLTIP_LINE_LENGTH_REDUCTION = 0; export declare const x_axis_style: { label: { font_family: string; font_size: string; font_style: string; font_weight: string; line_height: string; }; }; export declare const y_axis_style: { label: { font_family: string; font_size: string; font_style: string; font_weight: string; line_height: string; letter_spacing: string; text_transform: string; }; }; export declare const VEHICLE_INSIGHTS_CONFIG: { readonly BAR_COLOR: "#9a9a9a"; readonly BAR_WIDTH: 4; readonly BAR_SPACING: 40; readonly GRID_LINE_POSITIONS: readonly [5, 10, 73, 108]; };