import { FlowMetaParam, TargetReference, IwaitEvent } from '../types'; export declare class FlowSuspend { id: string; name: string; description?: string; connector?: TargetReference; defaultConnector?: TargetReference; defaultConnectorName?: string; waitEvents?: IwaitEvent[]; constructor(suspend: FlowMetaParam); protected makeObservable(): void; onEdit: (flowSuspend: FlowMetaParam) => void; }