You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
332 B
TypeScript

import { TabTypeMap } from './Tab.types';
import { PolymorphicComponent } from '../utils';
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base-ui/react-tabs/)
*
* API:
*
* - [Tab API](https://mui.com/base-ui/react-tabs/components-api/#tab)
*/
declare const Tab: PolymorphicComponent<TabTypeMap<{}, "button">>;
export { Tab };