import { CHTMLWrapper, CHTMLConstructor } from '../Wrapper.js'; import { BBox } from '../../../util/BBox.js'; import { StyleList } from '../../../util/StyleList.js'; declare const CHTMLsemantics_base: import("../../common/Wrappers/semantics.js").SemanticsConstructor & CHTMLConstructor; export declare class CHTMLsemantics extends CHTMLsemantics_base { static kind: string; toCHTML(parent: N): void; } export declare class CHTMLannotation extends CHTMLWrapper { static kind: string; toCHTML(parent: N): void; computeBBox(): BBox; } export declare class CHTMLannotationXML extends CHTMLWrapper { static kind: string; static styles: StyleList; } export declare class CHTMLxml extends CHTMLWrapper { static kind: string; static autoStyle: boolean; toCHTML(parent: N): void; computeBBox(bbox: BBox, _recompute?: boolean): void; protected getStyles(): void; protected getScale(): void; protected getVariant(): void; } export {};