import { type BackupRecord, type BackupStatus, type Page } from "../operations/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Returns an administrator-only reverse-chronological page of backup records, optionally filtered by status and an exclusive cursor. * Loading one row beyond the requested limit yields stable continuation metadata while preserving the operations authorization boundary. */ export declare function backupList(executor: DrizzleExecutor, input: { actorUserId: string; status?: BackupStatus; before?: string; limit: number; }): Promise>; //# sourceMappingURL=backupList.d.ts.map