import { TabProps } from "@material-ui/core";
export interface SegmentedTabProps extends TabProps {
    width?: number | string;
    height?: number | string;
    fontSize?: number | string;
    flex?: number;
}
