import { ReactElement } from "react"; import { TabItem } from "./TabItem"; type TabNavigationChildren = ReactElement | Array>; type TabAlignment = "start" | "center" | "end" | "stretch"; type TabNavigation = { color?: TabItem["color"]; selectedIndex?: number; tabAlignment?: TabAlignment; onItemPress?: (index: number) => void; children: TabNavigationChildren; includeContentMargins?: boolean; }; declare const TabNavigation: ({ color, selectedIndex, tabAlignment, onItemPress, children, includeContentMargins }: TabNavigation) => import("react/jsx-runtime").JSX.Element; export { TabNavigation }; //# sourceMappingURL=TabNavigation.d.ts.map