/** * List audit-log events the current user can see — their own actions plus the * agent's actions on their behalf, scoped in SQL to the caller's identity and * org. Read-only; never exposes other tenants' rows. */ declare const _default: import("../../action.js").ActionDefinition<{ targetType?: string; targetId?: string; actorKind?: "agent" | "human" | "system"; actorEmail?: string; status?: "denied" | "error" | "success"; threadId?: string; turnId?: string; action?: string; sinceMs?: number; limit?: number; }, { events: import("../types.js").AuditEvent[]; count: number; }>; export default _default; //# sourceMappingURL=list-audit-events.d.ts.map