import React from 'react'; import { IButtonProps } from './Button.types'; /** * Buttons allow users to take actions, and make actions, with a single click. */ declare const Button: React.ForwardRefExoticComponent & React.RefAttributes>; export default Button;