export declare const TOOLTIP_MAX_WIDTH = 480; /** * Maximum height of the tooltip body — the area containing the header, * the series header row, and the scrollable series list. The * `TooltipFooter` ("Pin to see actions" / global actions) is rendered * outside this cap, matching the Figma spec. */ export declare const TOOLTIP_BODY_MAX_HEIGHT = 240; export declare const seriesNameMaxLinesVar: `var(--${string})`; export declare const seriesItemMaxWidthVar: `var(--${string})`; export declare const seriesActionHeaderMaxLinesVar: `var(--${string})`; export declare const spaceSavedForSymbolVar: `var(--${string})`; export declare const wrapper: import("@vanilla-extract/recipes").RuntimeFn<{ isInteractive: { true: { pointerEvents: "all"; selectors: { '&[data-popper-reference-hidden=true]': { visibility: "hidden"; pointerEvents: "none"; }; }; }; false: { pointerEvents: "none"; userSelect: "none"; }; }; }>; export declare const seriesHeader: string; export declare const seriesHeaderName: string; export declare const seriesHeaderValue: string; export declare const seriesWrapper: string; export declare const seriesGridContainer: string; /** * Scroll container for the AnnotationsChart tooltip body. * * Annotations differ from the standard `OverlayTooltip` because each * annotation group renders its own subheader followed by its own series list, * so the standard per-series `seriesWrapper` cannot be reused. This wrapper * caps the combined height of all groups and lets them scroll together, * while keeping the surrounding `TooltipFooter` ("Pin to see actions" / * global actions) pinned at the bottom of the tooltip. */ export declare const annotationsGroupsScrollContainer: string; export declare const seriesOverflowContainerBase: string; export declare const seriesOverflowContainer: string; export declare const seriesItem: import("@vanilla-extract/recipes").RuntimeFn<{ symbolPosition: { left: { gridTemplateAreas: "\"symbol name value\""; gridTemplateColumns: `var(--${string}) 1fr auto`; paddingRight: string; }; right: { gridTemplateAreas: "\"name value symbol\""; gridTemplateColumns: `1fr auto var(--${string})`; paddingLeft: string; }; }; hasChevron: { true: { paddingRight: string; }; }; }>; export declare const seriesItemWrapper: string; export declare const seriesItemWithChevron: string; export declare const chevron: string; export declare const chevronRightAligned: string; export declare const seriesItemActive: string; export declare const seriesItemText: string; export declare const seriesNameTextMultiLine: string; export declare const seriesNameTextMultiLineWrap: string; export declare const relativeValueStyle: string; export declare const symbolWrapper: import("@vanilla-extract/recipes").RuntimeFn<{ isRight: { true: { marginRight: "-6px"; }; }; }>; export declare const headerText: string; export declare const seriesNameText: string; export declare const seriesValueText: string; export declare const seriesNameCell: string; export declare const seriesValueCell: string; export declare const seriesDescriptionText: string; export declare const seriesDescriptionTextMultiLine: string; export declare const seriesDescriptionTextMultiLineWrap: string; export declare const multiLineName: string; export declare const divider: string; export declare const symbolRight: string; export declare const seriesActionHeader: string; export declare const seriesActionHeaderMultiLine: string; export declare const actionsContainer: string; export declare const seriesItemHighlighted: string;