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