import { Ctor } from '@flowr/types'; /** * Verify if the input is a class constructor. * @param input The function to verify */ declare function isClass(input: unknown): input is Ctor; export { isClass };