type SpacerSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl'; type SpacerAxis = 'y' | 'x' | 'both'; interface SpacerProps { size?: SpacerSize; axis?: SpacerAxis; class?: string; } declare const Spacer: import("svelte").Component; type Spacer = ReturnType; export default Spacer;