import { Ref } from "react"; import { GestureResponderEvent, View } from "react-native"; import { WithTestID } from "../../utils/types"; import { IOIcons } from "../icons"; type ColorMode = "light" | "dark"; export type TabItem = WithTestID<{ ref?: Ref; label: string; color?: ColorMode; selected?: boolean; icon?: IOIcons; iconSelected?: IOIcons; accessibilityLabel: string; accessibilityHint?: string; onPress?: (event: GestureResponderEvent) => void; disabled?: boolean; }>; declare const TabItem: ({ label, color, selected, accessibilityLabel, accessibilityHint, testID, onPress, disabled, icon, iconSelected, ref }: TabItem) => import("react/jsx-runtime").JSX.Element; export { TabItem }; //# sourceMappingURL=TabItem.d.ts.map