type $$ComponentProps = { x?: number; y?: number; width?: number | string; height?: number | string; isVisible?: boolean; }; declare const Selection: import("svelte").Component<$$ComponentProps, {}, "">; type Selection = ReturnType; export default Selection;