export declare function sequentially<T, R>(items: T[], handler: (item: T) => Promise<R>): Promise<R[]>;
