export declare abstract class EdgeTarget { abstract isEqual(other: EdgeTarget): any; } export declare class EdgeTargetSimpleString extends EdgeTarget { value: string; constructor(value: string); isEqual(other: EdgeTarget): boolean; toString(): string; } export declare class EdgeTargetStackExport extends EdgeTarget { stackId: string; exportValue: string; constructor(stackId: string, exportValue: string); static fromFnImportValue(value: string): EdgeTargetStackExport; isEqual(other: EdgeTarget): boolean; toString(): string; }