import { CleanedWhere } from "better-auth/adapters"; import { JazzRepository } from "./generic"; import type { TableItem } from "../schema"; export declare class VerificationRepository extends JazzRepository { /** * Custom logic: property identifier is used as uniqueId */ create(model: string, data: Record, uniqueId?: string): Promise; /** * Custom logic: property identifier is used as uniqueId * If we look for identifier, we use findByUnique instead of findMany */ findMany(model: string, where: CleanedWhere[] | undefined, limit?: number, sortBy?: { field: string; direction: "asc" | "desc"; }, offset?: number): Promise; } //# sourceMappingURL=verification.d.ts.map