import { TextPropsRequired } from './types.js'; import type { MappedObject } from '../../types/helpers/mapped-object.js'; export declare const AXIS_TICK_LENGTH = 0; export declare const X_AXES_TICK_LINE_OFFSET = 4; export declare const Y_AXES_TICK_LINE_OFFSET = 6; export declare const AXIS_LABEL_HEIGHT = 12; export declare const MIN_SCALE_STEPS = 12; export declare const X_AXES_LABEL_OFFSET: number; export declare const Y_AXIS_LABEL_OFFSET = 6; export declare const TOP_AXIS_LINE_OFFSET = 18; export declare const TOP_AXIS_LABEL_OFFSET = 8; export declare const BOTTOM_AXIS_LINE_OFFSET = 8; export declare const MIN_AXIS_TRUNCATION_SIZE = 33; export declare const MAX_ANNOTATIONS_AREA_HEIGHT = 46; export declare const TICK_LINE_HEIGHT = 14; export declare const TICK_LINE_ICON_OFFSET = 4; export declare const Y_LABEL_AREA: number; export declare const X_LABEL_AREA: number; export type TickAligmentMode = 'start' | 'middle' | 'end'; export declare const TICK_ALIGMENT: MappedObject; export declare const DEFAULT_AXIS_FONT_COLOR: string; export declare const axisFontProps: TextPropsRequired; export declare const axisFontBaseProps: TextPropsRequired; /** * Regular expression that matches any emoji character. * * This regex uses Unicode property escapes to match characters with either * the `Emoji_Presentation` or `Extended_Pictographic` properties, which * together cover most emoji symbols and pictographs. * * https://www.unicode.org/Public/UCD/latest/ucd/emoji/emoji-data.txt */ export declare const EMOJI_REGEX: RegExp;