import React from "react"; import { GestureResponderEvent, StyleProp } from "react-native"; type Props = { children?: React.ReactNode; style?: StyleProp; buttonStyle?: StyleProp; textStyle?: StyleProp; selected?: boolean; onPress: (event?: GestureResponderEvent) => void; onLongPress?: (event?: GestureResponderEvent) => void; }; export declare const TabButton: React.FC; export {}; //# sourceMappingURL=TabButton.d.ts.map