import { type Model } from '@atlex/orm'; import type { VitestMatcherContext } from '../matcherContext.js'; /** * Vitest matcher: value is an instance of the given model class. */ export declare function toBeModel(this: VitestMatcherContext, received: unknown, modelClass: typeof Model): { message: () => string; pass: boolean; }; /** * Vitest matcher: model attributes contain expected subset. */ export declare function toMatchModel(this: VitestMatcherContext, received: unknown, attributes: Record): { message: () => string; pass: boolean; }; //# sourceMappingURL=model.d.ts.map