import { IActionsMixin } from '../interfaces/IActionsMixin'; import { IModelConstructor } from '../interfaces/IModelConstructor'; import { PureModel } from '../PureModel'; /** * Extends the model with some handy actions * * @export * @template T * @param {IModelConstructor} Base Model to extend * @returns Extended model */ export declare function withActions(Base: IModelConstructor): IModelConstructor & T>;