import { type DataExportJob, type DataExportStatus, type Page } from "../operations/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Returns a reverse-chronological export-job page for the active requester's own jobs or, for administrators, jobs filtered by requester and status. * Enforcing ownOnly before query construction prevents ordinary users from broadening the operations listing through optional filters. */ export declare function dataExportList(executor: DrizzleExecutor, input: { actorUserId: string; status?: DataExportStatus; requestedByUserId?: string; before?: string; limit: number; ownOnly?: boolean; }): Promise>; //# sourceMappingURL=dataExportList.d.ts.map