import { Spacing } from '../../tokens/spacings/Spacings'; import { HTMLAttributes } from 'react'; export interface SpacerProps extends Omit, 'children'> { /** If true, component will occupy space on the horizontal axis */ feHorizontal?: boolean; /** The amount of space the component occupies */ feSpacing?: Spacing; } /** * The `` is an empty element that provides spacing. Can be replaced with correct usage of margins and padding. */ declare const Spacer: import("react").ForwardRefExoticComponent>; export default Spacer;