import _Selection from './Selection.svelte'; import _Option from './Option.svelte'; type SelectionType = typeof _Selection & { Option: typeof _Option } const Selection = _Selection as SelectionType; Selection.Option = _Option; export { Selection }