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<PressableProps, 'style'>, ButtonPropsType, WithThemeStyles<ButtonStyles> {
}
declare const Button: React.FC<ButtonProps>;
export default Button;
