export * from '@mui/material/Tabs'; import { TabsProps as MuiTabsProps } from '@mui/material/Tabs'; import React from 'react'; export interface TabsProps extends MuiTabsProps { size?: 'small' | 'medium' | 'large'; mode?: 'default' | 'button' | 'pills'; shape?: 'default' | 'type' | 'square' | 'round'; indicatorAnimate?: boolean; iconPosition?: 'bottom' | 'top' | 'start' | 'end'; scrollMask?: boolean | string; } export declare const Tabs: (props: TabsProps) => React.JSX.Element;