/** * Bulk-export audit-log events as CSV or NDJSON — the "bulk export" sensitive * read the audit doc itself names. Pages past the per-call row clamp * (`queryAuditEvents`'s `MAX_LIMIT`) up to `maxRows`, scoped in SQL to the * caller's identity exactly like `list-audit-events`. 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; format?: "csv" | "ndjson"; maxRows?: number; }, { content: string; rowCount: number; truncated: boolean; format: "csv" | "ndjson"; }>; export default _default; //# sourceMappingURL=export-audit-events.d.ts.map