import type { Snippet } from 'svelte'; type AnnouncementTone = 'brand' | 'neutral' | 'warning' | 'success'; interface AnnouncementProps { message: string; /** Small pill before the message, e.g. "New" */ badge?: string; href?: string; linkLabel?: string; dismissible?: boolean; tone?: AnnouncementTone; sticky?: boolean; class?: string; icon?: Snippet; action?: Snippet; ondismiss?: () => void; } declare const Announcement: import("svelte").Component; type Announcement = ReturnType; export default Announcement;