export declare type Nil = null | undefined; export declare type Maybe = T | Nil; export declare type Newable = new (...args: A) => T; export declare type Extends = Function & { prototype: T; }; //# sourceMappingURL=types.d.ts.map