import { Ctor } from './types.cjs';

/**
 * Verify if the input is a class constructor.
 * @param input The function to verify
 */
declare function isClass(input: unknown): input is Ctor;

export { isClass };
