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