1import Root from './alert.svelte';
 2import Description from './alert-description.svelte';
 3import Title from './alert-title.svelte';
 4export { alertVariants, type AlertVariant } from './alert.svelte';
 5
 6export {
 7	Root,
 8	Description,
 9	Title,
10	//
11	Root as Alert,
12	Description as AlertDescription,
13	Title as AlertTitle
14};