import * as React from 'react'; import { InternalStandardProps as StandardProps } from '@mui/material'; import { Theme } from '@mui/material/styles'; import { SxProps } from '@mui/system'; import { TabPanelClasses } from './tabPanelClasses'; export interface TabPanelProps extends StandardProps> { /** * The content of the component. */ children?: React.ReactNode; /** * Override or extend the styles applied to the component. */ classes?: Partial; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; /** * The `value` of the corresponding `Tab`. Must use the index of the `Tab` when * no `value` was passed to `Tab`. */ value: string; } /** * * Demos: * * - [Tabs](https://mui.com/material-ui/react-tabs/) * * API: * * - [TabPanel API](https://mui.com/material-ui/api/tab-panel/) */ export default function TabPanel(props: TabPanelProps): JSX.Element;