UNPKG

@appbuckets/react-ui

Version:
11 lines (10 loc) 317 B
import * as React from 'react'; import { Creatable } from '../generic'; import TabPanel from './TabPanel'; import { TabsProps } from './Tabs.types'; declare type TabsChildren = { Panel: typeof TabPanel; }; declare const Tabs: Creatable<React.VoidFunctionComponent<TabsProps>> & TabsChildren; export default Tabs;