ultra-design
Version:
12 lines (11 loc) • 354 B
TypeScript
import TabsComponent from './tabs';
import Item from './tabs-item';
export { Item };
export type { TabsProps } from './tabs';
export type { TabsItemProps } from './tabs-item';
declare type TabsType = typeof TabsComponent;
interface TabsComponentType extends TabsType {
Item: typeof Item;
}
declare const Tabs: TabsComponentType;
export default Tabs;