/** Computes the font size of a text element, based on style information. */ declare const determineFontSize: (elem: SVGTextElement | SVGTSpanElement, computedStyles: CSSStyleDeclaration | undefined, supportedStyleAttrs: Set) => number; export default determineFontSize;