export declare class AsyncStack { static Global: AsyncStack; private static current; static getCurrent(): AsyncStack; protected static set(ctx: AsyncStack): void; static NO_DATA: symbol; static fork(): AsyncStack; origin?: AsyncStack; constructor(origin?: AsyncStack); start(): void; yield(): void; }