import { ReactElement } from 'react';
import { ButtonProps } from '@mui/material/Button';
interface Props {
    label: string;
}
export declare function ButtonCustom({ label, ...props }: ButtonProps & Props): ReactElement;
export {};
