import * as React from 'react' import { GestureResponderEvent, StyleProp, TextStyle, ViewStyle } from 'react-native' export interface ButtonProps { style?: StyleProp textStyle?: StyleProp text?: string onPress?: (event: GestureResponderEvent) => void } export declare class Button extends React.Component { render(): JSX.Element }