import { ElementType } from 'react'; import { BoxProps } from '@mui/material'; export interface TabPanelProps extends BoxProps { /** * currently selected tab */ value?: number | string; /** * index of the tab panel, when equals to value, content is shown */ index?: number | string; /** * always keep the children in the DOM. * @default false */ keepMounted?: boolean; } /** * Show or hide content based on the provided value and index */ export declare function TabPanel({ children, sx, value, index, keepMounted, ...rest }: TabPanelProps): import("react/jsx-runtime").JSX.Element;