type AsyncFunc<T> = () => Promise<T>;
export declare function doAsync<T>(func: AsyncFunc<T>): T;
export {};
