import { TabProps } from '@mui/material';
export interface StyleTabsPropsModel {
    borderRadius?: number;
    backgroundColor?: string;
    padding?: string;
    iconSeparation?: string | number;
    boxShadow?: string;
}
export interface CustomTabModel extends Omit<TabProps, 'children' | 'LinkComponent' | 'action'>, StyleTabsPropsModel {
}
