/// <reference types="react" />
import { ButtonColorValues } from './interfaces';
export declare const ButtonWrapper: import("@emotion/styled").StyledComponent<{
    theme?: import("@emotion/react").Theme | undefined;
    as?: import("react").ElementType<any, keyof import("react").JSX.IntrinsicElements> | undefined;
} & import("react").ClassAttributes<HTMLButtonElement> & import("react").ButtonHTMLAttributes<HTMLButtonElement> & {
    variant?: "filled" | "secondary" | "text" | undefined;
    onlyIcon?: boolean | undefined;
    icon?: import("react").ReactNode;
    size?: "fullWidth" | "large" | "default" | "small" | "inherit" | undefined;
    isLoading?: boolean | undefined;
    color?: "primary" | "contrast" | "grey" | undefined;
} & {
    buttonColor: ButtonColorValues;
}, import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
