import * as React from 'react'; import { Merge } from 'type-fest'; import { ButtonHTML, BaseButtonProps } from './BaseButton'; declare type ColorVariants = 'neutral' | 'default' | 'primary' | 'secondary' | 'danger' | string; export declare type ButtonProps = Merge; declare const Button: React.FunctionComponent; export { Button };