/**
 * A label represents the element(s) which further describe a link.
 * It encapsulates the property and its inverse property.
 * @param property the property; the inverse is inferred
 * @param link the link this label belongs to
 */
export declare class Label {
    property: any;
    link: any;
    frozen: any;
    locked: any;
    pinned: any;
    constructor(property: any, link: any);
    actualRadius(): any;
    draw(container: any): any;
    inverse(): any;
    equals(other: any): boolean;
}
