/** * Async counterpart of {@link using}. Awaits `callback`, then disposes * `resource` in a `finally` block — async disposers are awaited. Resolves to * `callback`'s value. */ export declare const usingAsync: (resource: T, callback: (r: T) => Promise) => Promise; //# sourceMappingURL=using-async.d.ts.map