import { HorizontalAlignmentType, TextOrientationType, VerticalAlignmentType } from '../../enums'; export declare class Label { width: number; height: number; orientation: TextOrientationType; horizontalAlignment: HorizontalAlignmentType; verticalAlignment: VerticalAlignmentType; label: string; style: Object; constructor(label: string, width: number, height: number, orientation: TextOrientationType, horizontalAlignment: HorizontalAlignmentType, verticalAlignment: VerticalAlignmentType, style: Object); }