export type AuditEventSeverity = 'info' | 'warning' | 'error' | 'critical'; interface AuditEventRowProps { action: string; actor?: string; target?: string; time?: Date | string | number; severity?: AuditEventSeverity; ip?: string; class?: string; onclick?: (e: MouseEvent) => void; } declare const AuditEventRow: import("svelte").Component; type AuditEventRow = ReturnType; export default AuditEventRow;