import type { Snippet } from 'svelte'; export type NotificationRowType = 'info' | 'success' | 'warning' | 'error'; export interface NotificationRowData { id: string; title: string; description?: string; time?: string | Date | number; read?: boolean; avatar?: string; actor?: string; type?: NotificationRowType; } interface NotificationRowProps { item: NotificationRowData; /** Compact = denser padding for popovers */ density?: 'comfortable' | 'compact'; class?: string; actions?: Snippet; onclick?: (item: NotificationRowData) => void; } declare const NotificationRow: import("svelte").Component; type NotificationRow = ReturnType; export default NotificationRow;