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