type Variant = 'info' | 'success' | 'warning' | 'error'; interface Props { children?: import('svelte').Snippet; title?: import('svelte').Snippet; actions?: import('svelte').Snippet; icon?: import('svelte').Snippet; variant?: Variant; class?: string; titleClass?: string; dismissible?: boolean; open?: boolean; role?: 'alert' | 'status'; 'aria-label'?: string; 'aria-labelledby'?: string; 'aria-describedby'?: string; ondismiss?: () => void; } declare const Alert: import("svelte").Component; type Alert = ReturnType; export default Alert;