import { ReactElement } from 'react'; import PropTypes from 'prop-types'; import { TabsProps } from '@mui/material/Tabs'; declare const TabbedFormTabs: { (props: TabbedFormTabsProps): JSX.Element; propTypes: { children: PropTypes.Requireable; classes: PropTypes.Requireable; url: PropTypes.Requireable; tabsWithErrors: PropTypes.Requireable; }; }; export declare const getTabFullPath: (tab: ReactElement, index: number, baseUrl: string) => string; export interface TabbedFormTabsProps extends TabsProps { classes?: any; url?: string; tabsWithErrors?: string[]; syncWithLocation?: boolean; } export default TabbedFormTabs;