///
import React from 'react';
import { AnchorHTMLAttributes, ButtonHTMLAttributes } from "react";
type ComponentProps = {
view?: 'primary' | 'secondary' | 'mattBlack' | 'link' | 'social';
size?: 'xs' | 's' | 'm' | 'l';
leftAddons?: React.ReactNode;
rightAddons?: React.ReactNode;
block?: boolean;
rectangle?: boolean;
className?: string;
href?: AnchorHTMLAttributes['href'];
fontWeight?: 'normal' | 'bold';
color: 'black' | 'white' | 'orange';
};
type AnchorButtonProps = ComponentProps & AnchorHTMLAttributes;
type NativeButtonProps = ComponentProps & ButtonHTMLAttributes;
type ButtonProps = Partial;
declare const Button: React.ForwardRefExoticComponent>;
export { ComponentProps, ButtonProps, Button };