import { type AlertItem } from './Alert.svelte'; type $$ComponentProps = { variant?: 'info' | 'success' | 'warning' | 'error'; title?: string; message?: string; items?: AlertItem[]; dismissible?: boolean; }; declare const AlertStory: import("svelte").Component<$$ComponentProps, {}, "">; type AlertStory = ReturnType; export default AlertStory;