export declare class PlantLink {
    readonly from: string;
    readonly to: string;
    readonly label: string;
    readonly style: 'solid' | 'dashed';
    constructor(from: string, to: string, label: string, style?: 'solid' | 'dashed');
    toString(): string;
}
