import { TabsProps as MuiTabsProps } from '@mui/material/Tabs'; export interface TabsProps extends Omit { children?: React.ReactNode; value?: string | number; onChange?: (event: React.SyntheticEvent, newValue: string | number) => void; /** Visual style of the tabs. "button" renders a segmented-control / pill appearance. "topIcon" renders icon-above-label tabs with a rounded, content-width indicator. */ tabStyle?: 'default' | 'button' | 'topIcon'; } export declare const Tabs: import('../../../node_modules/react').ForwardRefExoticComponent>;