import React from 'react'; import { TouchableOpacityProps } from 'react-native'; export interface ButtonInterface extends TouchableOpacityProps { title: string; borderColor?: string; } export declare const Button: React.FC;