import { CHTMLWrapper } from '../Wrapper.js';
import { CommonSemantics } from '../../common/Wrappers/semantics.js';
import { BBox } from '../BBox.js';
declare const CHTMLsemantics_base: (new (...args: any[]) => CommonSemantics) & (new (...args: any[]) => CHTMLWrapper);
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;
}
export declare class CHTMLxml extends CHTMLWrapper {
static kind: string;
static autoStyle: boolean;
toCHTML(parent: N): void;
computeBBox(): BBox;
protected getStyles(): void;
protected getScale(): void;
protected getVariant(): void;
}