import { EntityBase } from "../AppConfig"; /** * Returns true if the given object is a model. * * @param model The object to check. * @returns True if the given object is a model. */ export declare function isModel(model: unknown): model is EntityBase;