import { IDictionary } from 'datx-utils'; import { IIdentifier } from './interfaces/IIdentifier'; import { IType } from './interfaces/IType'; import { PureModel } from './PureModel'; declare const Model_base: import(".").IModelConstructor & import(".").IActionsMixin & PureModel> & import(".").IMetaMixin & PureModel>; export declare class Model extends Model_base { valueOf(): IDictionary & { meta: { id: IIdentifier; type: IType; }; }; toString(): string; } export {};