import { IAsyncDisposable } from './types'; export declare class AsyncDisposer implements IAsyncDisposable { dispose: () => void | Promise; constructor(dispose: () => void | Promise); }