import { FlowMetaParam, TargetReference } from '../types'; export declare class FlowLoop { id: string; name: string; description?: string; connector?: TargetReference; defaultConnector?: TargetReference; nextValueConnector?: TargetReference; collectionReference?: string; iterationOrder?: string; constructor(flowLoop: FlowMetaParam); protected makeObservable(): void; onEdit: (flowLoop: FlowMetaParam) => void; }