import { ButtonHTMLAttributes, HTMLAttributes } from 'react'; export interface ButtonProps extends ButtonHTMLAttributes { wait?: boolean; classNameContainer?: string; styleContainer?: HTMLAttributes['style']; variant?: 'primary' | 'light' | 'secondary' | 'secondary-light' | 'tertiary'; size?: 'normal' | 'small' | 'large'; icon?: 'left' | 'right' | 'only' | 'no'; children?: React.ReactNode; } declare const Button: ({ children, className, classNameContainer, styleContainer, wait, variant, size, icon, ...props }: ButtonProps) => import("react").JSX.Element; export default Button;