import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; import { WithThemeStyles } from '../style'; import { ButtonPropsType } from './PropsType'; import { ButtonStyles } from './style'; export interface ButtonProps extends ButtonPropsType, WithThemeStyles { activeStyle?: StyleProp; style?: StyleProp; onPress?: (_?: any) => void; } export default class Button extends React.Component { static defaultProps: { pressIn: boolean; disabled: boolean; loading: boolean; onPress: (_?: any) => void; }; constructor(props: ButtonProps); render(): JSX.Element; }