import { Subject } from '../observer/Subject';
declare class Model extends Subject {
static get(): typeof Subject;
static find(id: any): any;
static create(entity: any): any;
hasMany(relation: any): any;
belongsTo(relation: any): any;
}
export { Model };