import { DeferredConstructor } from "../Deferred"; interface Instrumentation { /** * Initialize instrumentation for the Deferred class. */ (Deferred: DeferredConstructor): void; } declare const Instrumentation: Instrumentation; export = Instrumentation;