import type { TruncationMode } from '../../../../../typography/text-ellipsis/TextEllipsis.js'; import type { TextSize } from '../../../../core/types/text-size.js'; import { CanvasTextAreaProps } from '../../../types/canvas-text-area.js'; import type { HoneycombLabelsDisplay } from '../../../types/honeycomb.js'; export declare const drawLabelAndValue: (ctx: CanvasRenderingContext2D, value: string | number, textArea: CanvasTextAreaProps, backgroundColor: string, name: string | undefined, truncationMode: TruncationMode | undefined, labelsDisplay: HoneycombLabelsDisplay, textSize?: TextSize) => void;