import { Task } from "./task"; /** * A task that is composed of other tasks */ export declare class CompositeTask extends Task { _tasks: Task[]; _completedTasks: number; _failedTasks: number; constructor(tasks: Task[]); onChildCompleted(_: Task): void; }