import React from 'react'; import { ButtonProps as MuiButtonProps } from '@mui/material/Button'; interface ButtonProps extends MuiButtonProps { rounded?: boolean; } interface IProps extends ButtonProps { children?: string | React.ReactElement; onClick: () => void; disabled?: boolean; rounded?: boolean; bgColor?: string; textColor?: string; gradientColor?: string; } declare function ActionButton(props: IProps): JSX.Element; declare namespace ActionButton { var defaultProps: { children: string; disabled: boolean; rounded: boolean; bgColor: string; }; } export default ActionButton;