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