/**
* isConstructor
*
* This function checks if the given subject is a constructor.
*
* @param subject Any JavaScript entity
* @returns true if subject is a constructor, false otherwise
*/exportdeclareconstisConstructor: (subject: any) => subject is new (...args: any[]) => any;