import React from 'react'; import { ButtonProps } from '../Button'; export interface ModalButtonProps extends ButtonProps { /** Whether or not modal button(s) should have the ability to close the modal. By default, you can only close the modal by clicking the close icon button in the modal. */ closesModal?: boolean; } export declare const ModalButton: React.SFC; export default ModalButton;