import { type TabProps as MuiTabProps } from '@mui/material'; import { type ElementType } from 'react'; import { type WithoutEmotionSpecific } from '../types'; export type TabProps = WithoutEmotionSpecific> & { component?: TComponent; }; export declare const Tab: (props: TabProps) => JSX.Element;