/// <reference types="react" />
interface ButtonProps {
    label?: string;
    color?: string;
    backgroundColor: string;
    disabled?: boolean;
    bold?: boolean;
    loading?: boolean;
    size?: "small" | "medium" | "large";
    onClick: () => void;
}
declare function Button({ label, backgroundColor, disabled, size, bold, color, loading, onClick, }: ButtonProps): JSX.Element;
export default Button;
//# sourceMappingURL=index.d.ts.map