import { RecursivePartial } from '../typings'; import { ISpacer } from '../blocks'; import { MjmlBlockProps } from '../components/MjmlBlock'; export declare type SpacerProps = RecursivePartial & RecursivePartial & { children?: MjmlBlockProps['children']; }; export declare function Spacer(props: SpacerProps): JSX.Element;