@mui/base
Version:
Base UI is a library of headless ('unstyled') React components and low-level hooks. You gain complete control over your app's CSS and accessibility features.
14 lines (13 loc) • 375 B
TypeScript
import { UseTabPanelParameters, UseTabPanelReturnValue } from './useTabPanel.types';
/**
*
* Demos:
*
* - [Tabs](https://mui.com/base-ui/react-tabs/#hooks)
*
* API:
*
* - [useTabPanel API](https://mui.com/base-ui/react-tabs/hooks-api/#use-tab-panel)
*/
declare function useTabPanel(parameters: UseTabPanelParameters): UseTabPanelReturnValue;
export { useTabPanel };