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
365 B
TypeScript

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