import type { ValueRepresentation } from './types/scales.js'; /** * @internal */ export declare const SCALE_FALLBACK_COLOR: string; /** @internal */ export declare const SIXTY_FPS: number; /** * @internal */ export declare const DEFAULT_DATA_POINT_RADIUS = 3; /** * Colors * @internal */ export declare const DEFAULT_FILL_OPACITY = 0.8; /** * An inactive fill is applied to every shape that is not * being hovered from the legend. * @internal */ export declare const DEFAULT_INACTIVE_FILL_OPACITY = 0.1; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_BAR_CHART = 0.1; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_AREA_CHART = 0.1; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_LINE_CHART = 0.1; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_PIE_CHART = 0.1; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_PIE_CHART_LABEL = 0.2; /** * Default opacity to be used for band chart. * It applies for both stroke and fill color. * @internal */ export declare const DEFAULT_OPACITY_BAND_CHART = 0.5; /** * @internal */ export declare const INACTIVE_FILL_OPACITY_BAND_CHART = 0.15; /** Stroke only has another value to differentiate it from line charts * @internal */ export declare const STROKE_ONLY_OPACITY_BAND_CHART = 0.8; /** * @internal */ export declare const INACTIVE_STROKE_ONLY_OPACITY_BAND_CHART = 0.15; /** * Width in px applied to the stroke style * @internal */ export declare const DEFAULT_STROKE_WIDTH_BAND_CHART = 1; /** * @internal */ export declare const defaultRatio = "auto"; /** * @public */ export declare const DEFAULT_TRUNCATION_MODE = "middle"; /** * @internal */ export declare const DEFAULT_VALUE_REPRESENTATION: ValueRepresentation; /** * @internal */ export declare const DEFAULT_SERIES_CURVE_SHAPE = "linear"; /** * @internal */ export declare const DEFAULT_INFINITE_ZOOM = false; /** * @internal */ export declare const DEFAULT_SELECT_ENABLED = false; /** * Chart layout padding * @internal */ export declare const LAYOUT_PADDING = 8; /** * @public */ export declare const CSS_DOWNLOAD_FILENAME = "data.csv"; /** * @internal */ export declare const LEGEND_POSITION: Readonly>; /** * @internal */ export declare const TRUNCATION_MODE: Readonly>; /** * Grail limits * @internal */ export declare const GRAIL_MIN_DOMAIN: Date; /** * @internal */ export declare const GRAIL_MAX_DOMAIN: Date; /** * @internal */ export declare const SWIPE_RELATIVE_THRESHOLD = 0.15; /** * @internal */ export declare const PINCH_RELATIVE_THRESHOLD = 0.15; /** * @internal */ export declare const RIGHT_BUTTON_ID = 2; /** * @internal */ export declare const MIDDLE_BUTTON_ID = 4; export declare const ChartOverlaysElevation: { crosshair: number; dataPoints: number; brush: number; toolbar: number; };