import { ReactNode } from 'react'; import { ViewStyle } from 'react-native'; declare type Props = { onPress: () => void; label: string | (() => ReactNode); containerStyle?: ViewStyle | ViewStyle[]; touchableStyle?: ViewStyle; labelStyle?: ViewStyle; testID?: string; }; export declare const TooltipMenuItem: { ({ onPress, containerStyle, label, labelStyle, testID, }: Props): JSX.Element; defaultProps: { labelStyle: null; containerStyle: null; touchableStyle: null; testID: undefined; }; }; export {};