import { TabHookResult, TabProps } from "./types.js"; //#region src/experimental/Tabs/useTab.d.ts /** * A custom hook that provides the props needed for a tab component. * The props returned should be spread onto the component (typically a button) with the `role=tab`, under a `tablist`. */ declare function useTab(props: Pick): TabHookResult; //#endregion export { useTab };