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