import { SVGWrapper } from '../Wrapper.js'; import { CommonSemantics } from '../../common/Wrappers/semantics.js'; import { BBox } from '../BBox.js'; declare const SVGsemantics_base: (new (...args: any[]) => CommonSemantics) & (new (...args: any[]) => SVGWrapper); export declare class SVGsemantics extends SVGsemantics_base { static kind: string; toSVG(parent: N): void; } export declare class SVGannotation extends SVGWrapper { static kind: string; toSVG(parent: N): void; computeBBox(): BBox; } export declare class SVGannotationXML extends SVGWrapper { static kind: string; } export declare class SVGxml extends SVGWrapper { static kind: string; static autoStyle: boolean; toSVG(parent: N): void; computeBBox(): BBox; protected getStyles(): void; protected getScale(): void; protected getVariant(): void; }