import { ITask } from "./task/ITask"; export declare class Runtime { private static tasks; static bake(instance: ITask): void; static task(name: string, ...args: any[]): Promise; static scoped(instance: Object, t: (...args: any[]) => Promise, ...args: any[]): Promise; static delay(ms: number | string): Promise; }