export type NuItemClickEvent = CustomEvent<{ type: string; title: string; description?: string; amount?: string; currency?: string; timestamp: string; status?: string; metadata?: Record; }>; declare global { interface GlobalEventHandlersEventMap { 'nu-item-click': NuItemClickEvent; } }