import { ViewProps, ViewStyle } from "react-native"; export interface TabV3Props { label: string; superscript?: string; active: boolean; style?: ViewStyle; onPress: () => void; onLayout: ViewProps["onLayout"]; } export declare const TabV3: ({ label, superscript, active, onLayout, onPress, style }: TabV3Props) => import("react/jsx-runtime").JSX.Element;