import { SinglePointElement } from './singlePointElement';
/**
 * Class for a text element at an anchor position.
 */
export declare class Text extends SinglePointElement {
    content: string;
    textAnchor: string;
    /**
     * Constructor.
     */
    constructor();
}
