import { TabsProps } from "./Tabs.types"; export declare function useTabs({ onChange, value, defaultValue, id, }: Pick): { id: string; selectedValue: string; setSelectedValue: (next: import("react").SetStateAction) => void; focusedValue: string; setFocusedValue: import("react").Dispatch>; makeTabId: typeof makeTabId; makeTabPanelId: typeof makeTabPanelId; }; declare function makeTabId(id: string, value: string): string; declare function makeTabPanelId(id: string, value: string): string; export {};