import './Button.scss'; import { ButtonProps } from './types'; /** * Primary UI component for user interaction */ declare const Button: ({ variant, backgroundColor, size, onClick, label, disabled, children, type, className, style, transparentBackground, withIcon, iconName, iconPosition, ...props }: ButtonProps) => import("react/jsx-runtime").JSX.Element; export default Button;