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