import { LabelDescriptor } from "./LabelDescriptor";
declare class Label {
    /**
    * The label's actual content.
    */
    'content'?: any;
    /**
    * The label's content formatted as string.
    */
    'contentAsString'?: string;
    /**
    * The descriptor that describes what information the label provides.
    */
    'descriptor'?: LabelDescriptor;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export { Label };
