declare global { export type Variant = 'solid' | 'soft' | 'outlined' | 'plain' export type Color = | 'neutral' | 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' export type SlenderNotification = { color: 'success' | 'info' | 'warning' | 'danger' title: string body?: string } export type IconName = keyof typeof import('./Icon').icons declare namespace svelteHTML { interface HTMLAttributes { 'on:invalidate'?: (event: CustomEvent) => void } } } export {}