import { TabsProps as MuiTabsProps } from '@material-ui/core'; import { ChangeEvent, ReactNode } from 'react'; export type TabsProps = Omit & { /** * Contents of the component, for instance - ``s */ children?: ReactNode; onChange?: (event: ChangeEvent, value: any) => void; compact?: boolean; type?: 'default' | 'filled' | 'filledTab'; TabIndicatorProps?: Partial> & { classes: { root: string; }; }; }; declare const Tabs: ({ compact, type, ...TabsProps }: TabsProps) => JSX.Element; export default Tabs; //# sourceMappingURL=Tabs.d.ts.map