import { Theme } from '../../types';
type ButtonProps = {
    theme: Theme;
    size?: "small" | "medium" | "large";
    variant?: "contained" | "text" | "outlined";
    disabled?: boolean;
    sx?: React.CSSProperties;
    onClick?: () => void;
    className?: string;
    accentColor: string;
    dataTestid?: string;
    children?: React.ReactNode;
};
export declare const Button: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element;
export {};
