import React from 'react'; import { TabsActions, TabsClasses, TabScrollButtonProps } from '@mui/material'; import { TabProps } from './tab'; export interface TabsProps { style?: React.CSSProperties; action?: React.Ref; allowScrollButtonsMobile?: boolean; centered?: boolean; classes?: Partial; indicatorColor?: 'secondary' | 'primary'; onChange?: (index: number) => void; orientation?: 'horizontal' | 'vertical'; ScrollButtonComponent?: React.ElementType; scrollButtons?: 'auto' | true | false; selectionFollowsFocus?: boolean; TabIndicatorProps?: React.HTMLAttributes; TabScrollButtonProps?: Partial; textColor?: 'secondary' | 'primary' | 'inherit'; value?: number; variant?: 'standard' | 'scrollable' | 'fullWidth'; visibleScrollbar?: boolean; children?: React.ReactElement[] | React.ReactElement; } export declare const Tabs: React.FC; //# sourceMappingURL=tabs.d.ts.map