import React from "react";
interface ButtonProps {
    textColor?: string;
    bgColor?: string;
    borderRadius?: string;
    width?: string;
    height?: string;
    txt?: string;
    hoverBgColor?: string;
    hoverTextColor?: string;
    variant: "primary" | "secondary" | "tertirary" | "success" | "warning" | "danger" | "unstyled" | "disable";
}
export default function StkButton({ textColor, bgColor, borderRadius, width, height, txt, hoverBgColor, hoverTextColor, variant, }: ButtonProps): React.JSX.Element;
export {};
