import { Component } from "react"; import { StyleProp, TextProps, TextStyle, TouchableOpacityProps, ViewStyle } from "react-native"; export interface ButtonProps extends TouchableOpacityProps, Pick { containerStyle?: StyleProp | undefined; disabledContainerStyle?: StyleProp | undefined; style?: StyleProp | undefined; styleDisabled?: StyleProp | undefined; childGroupStyle?: StyleProp | undefined; androidBackground?: object | undefined; } export default class Button extends Component { constructor(props: object); }