import React from "react"; import { GestureResponderEvent, StyleProp } from "react-native"; declare const statusMap: { finished: string; starting: string; playing: string; waiting: string; }; type Props = { style?: StyleProp; name?: string; userCount?: number; userLimit?: number; status?: string; disabled?: boolean; statusTexts?: typeof statusMap; playText?: string; onJoinPress?: (event?: GestureResponderEvent) => void; onJoinLongPress?: (event?: GestureResponderEvent) => void; }; export declare const GameListItem: React.FC; export {}; //# sourceMappingURL=GameListItem.d.ts.map