import React from 'react';
import { ButtonProps as MuiButtonProps } from '@mui/material';
export interface ButtonProps extends Omit<MuiButtonProps, 'size'> {
    /**
     * The size of the button
     */
    size?: 'small' | 'medium' | 'large';
    /**
     * Whether the button should take full width
     */
    fullWidth?: boolean;
    /**
     * Whether the button is in loading state
     */
    loading?: boolean;
}
export declare const Button: React.FC<ButtonProps>;
//# sourceMappingURL=Button.d.ts.map