import { type AuditContext } from "../operations/auditContext.js"; import { type DrizzleExecutor } from "../drizzle.js"; import { type ModerationReport, type ModerationReportStatus } from "../operations/types.js"; /** * Applies an allowed triage transition and administrator notes to moderationReports without executing a moderation action. * The audit entry shares the report update so queue state changes remain attributable during later investigation. */ export declare function moderationReportUpdate(executor: DrizzleExecutor, input: { actorUserId: string; reportId: string; status?: ModerationReportStatus; assignedToUserId?: string | null; resolution?: string | null; context?: AuditContext; }): Promise; //# sourceMappingURL=moderationReportUpdate.d.ts.map