import { TabProps } from '@mui/material'; import { FC, PropsWithChildren } from 'react'; type Props = Omit & { index: number; }; declare const Component: FC>; export default Component;