import { IStartFlowMeta, TargetReference, Criteria, FlowType, ISchedule } from '../types'; export declare class FlowStart { id: string; name: string; type: FlowType; connector?: TargetReference; criteria?: Criteria | null; objectId?: string; recordTriggerType?: string; schedule?: ISchedule; triggerType?: string; constructor(flowStart: IStartFlowMeta); protected makeObservable(): void; onEdit: (flowStart: IStartFlowMeta) => void; }