import { PropTypes, ButtonProps } from "@material-ui/core";
import React from "react";
export interface IGovernanceButton extends ButtonProps {
    color?: PropTypes.Color;
    onClick: () => void;
    disabled?: boolean;
    loading?: boolean;
    variant?: "text" | "outlined" | "contained";
    children?: string | React.ReactNode;
    startIcon?: React.ReactNode;
    endIcon?: React.ReactNode;
    autoFocus?: boolean;
    size?: "small" | "medium" | "large";
    isDangerButton?: boolean;
    fullWidth?: boolean;
}
export declare const GovernanceButton: React.FC<IGovernanceButton>;
//# sourceMappingURL=GovernanceButton.d.ts.map