declare function isConstructor<T>(value: any): value is Constructor<any>;
export default isConstructor;
export type Constructor<T> = new (...args: any[]) => T;
declare namespace isConstructor {
    type Constructor<T> = new (...args: any[]) => T;
}
