import { IAction, CoreAction } from "./interfaces"; export declare const ForEachEvent: { OnNext: string; }; export declare class ForEach extends CoreAction { private iterator; private next; private valueVar; private indexVar; private keyVar; name: string; constructor(iterator: string, next: IAction[], valueVar?: string, indexVar?: string, keyVar?: string, name?: string); readonly id: string; toCCML(): string; }