import React from 'react'; import { SxProps } from '@mui/material'; import type { Theme } from 'src/theme/muiTheme'; interface TabPanelProps { children: React.ReactNode; index: number; value: number; hidden?: boolean; sxs?: { inner?: SxProps; }; } declare const TabPanel: React.FC; export { TabPanel };