import React, { type ButtonHTMLAttributes, type Ref } from 'react';
export interface ButtonProps extends ButtonHTMLAttributes {
buttonRef?: Ref;
variant?: 'primary' | 'secondary' | 'tertiary' | 'error' | 'danger' | 'danger-secondary' | 'link' | 'tag' | 'badge';
thin?: boolean;
}
declare const Button: React.ForwardRefExoticComponent>;
export default Button;