import { DefinitionModel } from '../../main/models/definitionModel'; /** * @description * This function helps you to create a new model. * If you pass a name as a second parameter, the created model is not anonymous. * This will help you to identify this model in case of errors easier. * @param model * @param name */ export declare function $model(model: T, name?: string): T;