export interface ButtonProps { text?: string; textColor?: string; hoverTextColor?: string; fontSize?: number; fontWeight?: number; width?: number; height?: number; borderRadius?: number; textTransform?: string; backgroundColor?: string; hoverBackgroundColor?: string; borderColor?: string; borderThickness?: string; loading?: boolean; loaderColor?: string; openLink?: string; openLinkInNewTab?: boolean; clickFunction?: () => void; prefixIcon?: string; suffixIcon?: string; gradientDirection?: string; gradientColors?: string[]; hoverGradientDirection?: string; hoverGradientColors?: string[]; isDisabled?: boolean; } declare const WOITextButton: (props: ButtonProps) => import("react/jsx-runtime").JSX.Element; export default WOITextButton;