import { type DrizzleExecutor } from "../drizzle.js"; import { type Page, type RetentionRun, type RetentionScope } from "../operations/types.js"; /** * Returns an administrator-only reverse-chronological page of retention runs, optionally filtered by scope and continued before a start-time cursor. * The shared page projection exposes durable cleanup outcomes without allowing ordinary users to inspect server policy execution. */ export declare function retentionRunList(executor: DrizzleExecutor, input: { actorUserId: string; scope?: RetentionScope; before?: string; limit: number; }): Promise>; //# sourceMappingURL=retentionRunList.d.ts.map