import type { Nullable } from '@voiceflow/common'; import type { Point } from './node'; export declare enum LinkType { CURVED = "CURVED", STRAIGHT = "STRAIGHT" } export interface PathPoint { point: Point; toTop?: boolean; locked?: boolean; reversed?: boolean; allowedToTop?: boolean; } export interface LinkDataCaption { value: string; width: number; height: number; } export interface LinkData { type?: Nullable; color?: Nullable; points?: Nullable; caption?: Nullable; } //# sourceMappingURL=link.d.ts.map