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