import { SVGWrapper, SVGConstructor } from '../Wrapper.js'; import { BBox } from '../../../util/BBox.js'; import { StyleList } from '../../../util/StyleList.js'; declare const SVGsemantics_base: import("../../common/Wrappers/semantics.js").SemanticsConstructor & SVGConstructor; 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; static styles: StyleList; } export declare class SVGxml extends SVGWrapper { static kind: string; static autoStyle: boolean; toSVG(parent: N): void; computeBBox(bbox: BBox, _recompute?: boolean): void; protected getStyles(): void; protected getScale(): void; protected getVariant(): void; } export {};