interface AuditExportConfig { endpoint: string; format: "json" | "cef"; batchSize: number; } declare function resolveAuditExportConfig(): AuditExportConfig | null; declare function exportPendingAuditLogs(): Promise; export { exportPendingAuditLogs, resolveAuditExportConfig };