import Root from './empty.svelte'; import Description from './empty-description.svelte'; import SimpleImage from './empty-simple-img.svelte'; import type { HTMLAttributes } from 'svelte/elements'; interface Props extends HTMLAttributes { description?: string | null; } export { Root, Description, SimpleImage, type Props, // Root as Empty, Description as EmptyDescription, SimpleImage as EmptySimpleImage, type Props as EmptyProps, };