import { Behaviour } from ".";
/**
*
* 1. sequential:
*
* 2. parallel
*
* 3. repeater
*
*
*/
declare class LoopBehaviour extends Behaviour {
init(): void;
get collection(): any;
isStandard(): boolean;
isSequential(): any;
describe(): string[][];
}
export { LoopBehaviour };