importReactfrom'react';
import { ButtonProps } from'./Button.types';
/**
* Allow users to take actions and decisions with a simple click
*/declareconstButton: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
exportdefaultButton;