import { ButtonProps } from "@mui/material/Button";
import { CircularProgressProps } from "@mui/material/CircularProgress";
/**
 * Loading button props
 */
export type LoadingButtonProps = ButtonProps & {
    /**
     * Loading icon props
     */
    loadingIconProps?: CircularProgressProps;
};
/**
 * Loading button
 * @param props Props
 */
export declare function LoadingButton(props: LoadingButtonProps): import("react/jsx-runtime").JSX.Element;
