/**
 * @export
 * @class Label
 */
export declare class Label {
    /**
     * Identifier of the label.
     * @type {number}
     * @memberof Label
     */
    id?: number;
    /**
     * Specifies the language of the label.
     * @type {string}
     * @memberof Label
     */
    lang?: string;
    /**
     * Content of the label. (required)
     * @type {string}
     * @memberof Label
     */
    value?: string;
    constructor(obj?: Partial<Label>);
}
export default Label;
