interface Props { size?: string | number; grow?: boolean; axis?: 'horizontal' | 'vertical' | 'both'; class?: string; style?: string; } declare const Spacer: import("svelte").Component; type Spacer = ReturnType; export default Spacer;