import * as react from 'react'; import { LegacyTabIndicatorStyle } from './TabList.types.cjs'; import '../../types.cjs'; import '@emotion/react'; declare const useTabs: (props: { defaultValue: T; }) => { value: T; setValue: react.Dispatch>; getTabProps: (tabValue: T, index: number) => { key: T; id: T; active: boolean; ref: (ref: HTMLButtonElement) => void; onClick: () => void; value: T; }; tabIndicatorStyle: LegacyTabIndicatorStyle | undefined; }; export { useTabs };