import React from "react";
import { StyleProp, ViewStyle, TextStyle } from "react-native";
export interface OutlineButtonProps {
    text?: string;
    onPress?: () => void;
    style?: StyleProp<ViewStyle>;
    textStyle?: StyleProp<TextStyle>;
    TouchableComponent?: any;
}
declare const OutlineButton: React.FC<OutlineButtonProps>;
export default OutlineButton;
