export type Type_TooltipHiddenBlocks = { [block_id: string]: boolean; }; export declare const NODE_TOOLTIP_BLOCKS: readonly ["values", "tags", "unitary", "analysis"]; export declare const LINK_TOOLTIP_BLOCKS: readonly ["flux", "series_flux", "data", "series_data", "analysis"]; export type Type_NodeTooltipBlock = typeof NODE_TOOLTIP_BLOCKS[number]; export type Type_LinkTooltipBlock = typeof LINK_TOOLTIP_BLOCKS[number]; export declare const tooltipBlockLabelKey: (block_id: string) => string; export declare const isTooltipBlockVisible: (hidden: Type_TooltipHiddenBlocks | undefined, block_id: string) => boolean;