import React from "react"; import { TabsChildrenType } from "./types"; export type TabsProps = { /** * Whether or not the tabs should be scrollable. * When this value is false, tabs are flexed to fit the screen. * When this value is true, tabs only take up as much space as they need. */ scrollable?: boolean; /** * Index of initial tab to render. */ initialActiveIndex?: number; /** * Tabs children. Use as children only. */ children?: TabsChildrenType[] | TabsChildrenType; }; export declare const Tabs: ({ scrollable, initialActiveIndex, children }: TabsProps) => React.JSX.Element;