import { Ctor } from '@flowr/types'; /** * Checks whether or not the value class extends the base class. * @param value The constructor to be checked against. * @param base The base constructor. */ declare function classExtends(value: Ctor, base: Class): value is Class; export { classExtends };