import { type AccountBan } from "../operations/types.js"; import { type AuditContext } from "../operations/auditContext.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Revokes the current accountBans interval and restores accounts authority when no remaining ban applies to the target. * The administrator-audited transaction keeps account activation, product user state, and the visible moderation record in agreement. */ export declare function accountBanRevoke(executor: DrizzleExecutor, input: { actorUserId: string; targetUserId: string; reason?: string; context?: AuditContext; }): Promise; //# sourceMappingURL=accountBanRevoke.d.ts.map