/**
 * SegmentLabel object
 */
export default class SegmentLabel extends Label {
    constructor(parent: any, text: any);
    getPadding(): number;
    computeContainerDimensions(): void;
    containerWidth: any;
    containerHeight: any;
}
import Label from "./label";
