import React from 'react'; import { MestGenericProps } from "../themes"; import { StyledSpacerVariants } from "./style"; type Props = { width?: number | string; height?: number | string; } & MestGenericProps; type NativeAttrs = Omit, keyof Props>; export type SpacerProps = Props & NativeAttrs & StyledSpacerVariants; declare const Spacer: React.FC>; export default Spacer;