///
/**
* The Tabs component.
*
*```tsx
* import * as React from "react"
* import * as System from "@harborschool/lighthouse"
*
* export default () => {
* return (
*
*
* Tab 1
* Tab 2
* Tab 3
*
*
* TabPanel 1
* TabPanel 2
* TabPanel 3
*
*
* )
* }
* ```
* @param children - React.ReactNode
* @param current - number
* @param tabListScroll - boolean
*/
export declare const Tabs: React.FC;
export { TabList } from "./tab-list";
export { Tab } from "./tab";
export { TabPanels } from "./tab-panels";
export { TabPanel } from "./tab-panel";
export * from "./types";
import { TabsPropsT } from "./types";