export interface IDisposable { dispose(): void; } export declare function isDisposable(thing: unknown): thing is IDisposable;