import { type AuditContext } from "../operations/auditContext.js"; import { type DataExportJob } from "../operations/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Cancels a requester-visible dataExportJobs item only while its lifecycle still permits cancellation. * Persisting the terminal state with audit evidence gives workers an authoritative stop signal and explains who withdrew the export. */ export declare function dataExportCancel(executor: DrizzleExecutor, input: { actorUserId: string; jobId: string; context?: AuditContext; }): Promise; //# sourceMappingURL=dataExportCancel.d.ts.map