/**
 * Label object
 */
export default class Label {
    constructor(parent: any);
    parent: any;
    sortableType: string;
    getText(): any;
    labelText: any;
    initText(): any;
    render(display: any): void;
    /**
     * Does not need to be implemented by subclass
     */
    refresh(display: any): void;
    setVisibility(visibility: any): void;
    getBBox(): null;
    intersects(obj: any): null;
    intersectsBBox(bbox: any): boolean;
    isFocused(): any;
    getZIndex(): number;
}
