import React from 'react'; import { ButtonProps } from '@mui/material'; type Props = ButtonProps & { loading?: boolean; }; export declare const LoadingButton: React.FC; export {};