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