import { GraphNode, TaskRunInputType } from '../models'; import { MockFunction } from '../services/Mocker'; export type Shape = 'linear' | 'fanOut' | 'fanOutIn'; export type GraphOptions = { shape?: Shape; size?: number; fanMultiplier?: number; ids?: string[]; }; export type UpstreamReference = { id: string; inputType: TaskRunInputType; }; export declare const randomGraphNode: MockFunction?]>; export declare const randomFlowRunGraph: MockFunction?]>;