export declare const UNDEFINED_TYPE = "The type needs to be defined if the object is not an instance of the model."; export declare const UNDEFINED_MODEL = "No model is defined for the type ${type}."; export declare const NOT_A_CLONE = "The given model is not a clone."; export declare const MODEL_EXISTS = "Model already exists, please update it instead."; export declare const REF_NEEDS_COLLECTION = "The model needs to be in a collection to be referenceable"; export declare const REF_SINGLE = "The reference ${key} can't be an array of values."; export declare const REF_ARRAY = "The reference ${key} must be an array of values."; export declare const NO_REFS = "You should save this value as a reference."; export declare const BACK_REF_READ_ONLY = "Back references are read only"; export declare const ID_READONLY = "Model ID can't be updated directly. Use the `updateModelId` helper function instead."; export declare const TYPE_READONLY = "Model type can't be changed after initialization."; export declare const MODEL_SINGLE_COLLECTION = "A model can be in a single collection at once"; export declare const ID_REQUIRED = "Model id is required (autoincrement is disabled)"; export declare const WRONG_REF_TYPE = "The new reference type doesn't match to the declared one."; export declare const MODEL_REQUIRED = "The model type is a required parameter. Do you maybe have a circular dependency?"; export declare const SORTED_NO_WRITE = "New models can't be added directly to a sorted view list"; export declare const UNIQUE_MODEL = "The models in this view need to be unique"; export declare const VIEW_NAME_TAKEN = "The name is already taken"; export declare const DECORATE_MODEL = "This mixin can only decorate models"; export declare const DECORATE_COLLECTION = "This mixin can only decorate collections";