import React from "react"; import { GestureResponderEvent, ImageSourcePropType, StyleProp } from "react-native"; type Props = { children?: React.ReactNode; style?: StyleProp; buttonStyle?: StyleProp; textStyle?: StyleProp; iconStyle?: StyleProp; out?: boolean; centered?: boolean; icon?: ImageSourcePropType; onPress: (event?: GestureResponderEvent) => void; onLongPress?: (event?: GestureResponderEvent) => void; disabled?: boolean; type?: string; selected?: boolean; rightComponent?: React.Component | React.FC | string | number | Element; }; export declare const GameButton: React.FC; export {}; //# sourceMappingURL=GameButton.d.ts.map