export declare class Test { plans: number; things: any[]; constructor(); plan(n: number): this; do(things: any[]): this; } export declare function doSequence(tasks: any[]): Promise;