import type React from "react";
import { ThemeContainer } from "./styles";
interface ThemedButtonProps {
    children?: React.ReactNode;
    variant?: "primary" | "secondary" | "tertiary";
    autoSize?: boolean;
    duration?: number;
    style?: React.CSSProperties;
    onClick?: () => void;
}
export default function ThemedButton({ children, variant, autoSize, duration, style }: ThemedButtonProps): import("react/jsx-runtime").JSX.Element;
export { ThemeContainer };
