import React from 'react'; import { PressableProps } from 'react-native'; import { WithThemeStyles } from '../style'; import { ButtonPropsType } from './PropsType'; import { ButtonStyles } from './style/index'; export interface ButtonProps extends Omit, ButtonPropsType, WithThemeStyles { } declare const Button: React.FC; export default Button;