import { ButtonHTMLAttributes, default as React } from 'react';
export declare const Button: React.NamedExoticComponent<ButtonHTMLAttributes<HTMLButtonElement> & {
    variant?: string;
    size?: string;
    quiet?: boolean;
    rounded?: boolean;
    "data-variant"?: string;
    popovertarget?: string;
    popovertargetaction?: string;
} & React.RefAttributes<HTMLButtonElement>>;
