import { FC } from 'react'; declare type ISize = 'small' | 'medium' | 'large' | 'extraLarge'; interface ISpacer { horizontal?: boolean; size?: ISize; } export declare const Spacer: FC; export {};