import { Constructor } from '@flowr/types'; /** * Verify if the input is an object literal (or class). * @param input The object to verify * @param constructorType The type of the constructor of the object. Use this if you want a `class` of your choosing to pass the check as well. */ declare function isObject(input: unknown, constructorType?: ObjectConstructor): input is object; declare function isObject>(input: unknown, constructorType: Constructable): input is InstanceType; export { isObject };