import { ParsedInfographicOptions } from '../../options'; import type { DynamicAttributes } from '../../themes'; import type { TextAttributes } from '../../types'; export declare function renderText(node: SVGElement, text: string, attrs?: DynamicAttributes): SVGElement | null; export declare function renderItemText(type: 'label' | 'desc' | 'value', node: SVGElement, options: ParsedInfographicOptions): SVGElement | null; export declare function renderStaticText(text: SVGTextElement, options: ParsedInfographicOptions): void;