import { Task } from "task-run"; import { Node, TickParams } from "./imports"; export declare class Negate implements Node { child: Node; label: string; constructor(child: Node); tick(params: TickParams): Task; }