import { TabOwnProps } from '@mui/base/Tab'; import React from 'react'; import { BoxProps } from '../../Box'; export type TabProps = TabOwnProps & React.RefAttributes & { sx?: BoxProps['sx']; variant?: 'default' | 'inPaper' | 'tag'; }; export declare const Tab: React.ForwardRefExoticComponent & React.RefAttributes>;