export declare class DummyModel { static db: Map; static hookChecker: any; save(): this; static updateById(id: any, data: any): any; static removeById(id: any): DummyModel; static findById(id: any): DummyModel; static find(): DummyModel[]; } export declare class DummyModelExtended extends DummyModel { static db: Map; static getModelName(): string; }