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