import { type AuditLogEntry, type Page } from "../operations/types.js"; import { type DrizzleExecutor } from "../drizzle.js"; /** * Returns an administrator-only reverse-chronological audit page filtered by action, target, actor, and an exclusive created-at/id cursor. * Fetching one extra row through the shared page mapper produces a stable continuation token without exposing audit history to ordinary users. */ export declare function auditLogList(executor: DrizzleExecutor, input: { actorUserId: string; action?: string; targetType?: string; targetId?: string; auditedActorUserId?: string; before?: string; limit: number; }): Promise>; //# sourceMappingURL=auditLogList.d.ts.map