import * as React from 'react'; import { SxProps } from '../../types/theme'; import { OverrideProps } from '@mui/types'; import { CreateSlotsAndSlotProps, SlotProps } from '../../types/slot'; export interface TabsListSlots { /** * The component that renders the root. * @default 'div' */ root?: React.ElementType; } export type TabsListSlotsAndSlotProps = CreateSlotsAndSlotProps; }>; export interface TabsListTypeMap

{ props: P & { /** * Used to render icon or text elements inside the TabList if `src` is not set. * This can be an element, or just a string. */ children?: React.ReactNode; /** * If true, shows a divider between tabs and main content. */ divider?: boolean; /** * The system prop that allows defining system overrides as well as additional CSS styles. */ sx?: SxProps; } & TabsListSlotsAndSlotProps; defaultComponent: D; } export type TabsListProps = OverrideProps, D>; export interface TabListOwnerState extends TabsListProps { /** * If `true`, the Tabs' direction is "rtl". */ isRtl: boolean; /** * The orientation of the Tabs. */ orientation: 'horizontal' | 'vertical'; }