import { IMetaMixin } from '../interfaces/IMetaMixin'; import { IModelConstructor } from '../interfaces/IModelConstructor'; import { PureModel } from '../PureModel'; /** * Extends the model with the exposed meta data * * @export * @template T * @param {IModelConstructor} Base Model to extend * @returns Extended model */ export declare function withMeta(Base: IModelConstructor): IModelConstructor & T>;