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