import type { VitestMatcherContext } from '../matcherContext.js'; /** * Vitest matcher: model row exists in database. */ export declare function toExistInDatabase(this: VitestMatcherContext, received: unknown, table?: string, column?: string): Promise<{ message: () => string; pass: boolean; }>; /** * Vitest matcher: soft-deleted model (`deleted_at` set). */ export declare function toBeSoftDeleted(this: VitestMatcherContext, received: unknown): { message: () => string; pass: boolean; }; //# sourceMappingURL=database.d.ts.map