import React from "react"; import { TabBarProps } from "./tab-bar"; import { TabProps } from "./tab"; interface TabOptions extends Omit { key: string; label: React.ReactNode; } interface TabsProps extends Omit { tabs: Array; active?: string | null; onActiveUpdate: (key: string) => void; isCompactHeight?: boolean; } declare function Tabs({ tabs, active, onActiveUpdate, isMinWidth, isMinWidthIndicator, isCompactHeight, className, ...props }: TabsProps): React.JSX.Element; export default Tabs;