import { SyntheticEvent } from 'react'; /** * Hook to manage the state of a tabs component. */ declare const useTabs: () => { handleChange: (_: SyntheticEvent, newValue: number) => void; value: number; }; export default useTabs;