import { ButtonProps } from './button.types'; /** * The button allow users to take actions, and make choices, with a single tap. * * ## Usage * ```jsx * import { Button } from '@bloomreach/react-banana-ui'; * * export default function MyComponent() { * return ; * } * ``` */ declare const Button: import('react').ForwardRefExoticComponent>; export default Button;