/**
* Defines word labels.
*/
export defaultclassLabel{
readonly text: string;
readonly type: string;
/**
* Constructor.
*
* @param text {string} The text of the label.
* @param type {string} The type of the label.
*/constructor(text: string, type: string);
}