/// <reference types="react" />
import { PressableProps } from "react-native";
export default function TextLink({ onPress, text, color, }: {
    onPress: PressableProps["onPress"];
    text: string;
    color?: string;
}): JSX.Element;
