/// import { ButtonProps } from "@mui/material"; interface IProps extends ButtonProps { loading?: boolean; iconButton?: boolean; } declare function BaseButton({ loading, size, variant, iconButton, ...props }: IProps): JSX.Element; export default BaseButton;