export declare const Type: FunctionConstructor; export declare function isType(v: any): v is Type; export interface Type extends Function { new (...args: any[]): T; }