/** * Determines whether the given string represents an empty constructor. * * @param {string} vStr - The string to check. * @returns {boolean} - Returns true if the string represents an empty constructor, otherwise false */ export function isEmptyCtor(vStr: string): boolean; export default isEmptyCtor;