import type { Snippet } from 'svelte'; interface BannerProps { title?: string; description?: string; variant?: 'info' | 'success' | 'warning' | 'error' | 'brand'; dismissible?: boolean; actionLabel?: string; class?: string; children?: Snippet; ondismiss?: () => void; onaction?: () => void; } declare const Banner: import("svelte").Component; type Banner = ReturnType; export default Banner;