import { SpacerSizes } from './../../theme/spacers'; export interface SpacerProps { /** Sets the size of the spacer. */ size?: SpacerSizes; /** Adds custom classes to the element. */ className?: string; /** Sets the data-testid attribute. */ testId?: string; /** Ref passed to the component */ ref?: React.Ref; } declare const Spacer: React.FC; export default Spacer;