UNPKG

432 BTypeScriptView Raw
1import { PolymorphicComponent } from '../utils/PolymorphicComponent';
2import { ButtonTypeMap } from './Button.types';
3/**
4 * The foundation for building custom-styled buttons.
5 *
6 * Demos:
7 *
8 * - [Button](https://mui.com/base/react-button/)
9 *
10 * API:
11 *
12 * - [Button API](https://mui.com/base/react-button/components-api/#button)
13 */
14declare const Button: PolymorphicComponent<ButtonTypeMap<{}, "button">>;
15export default Button;