import React from "react"; import type { ViewStyle } from "react-native"; import Text from "./Text"; import type { TSTextProps } from "./types"; function TSText({ accessibilityLabel, children, style, mode, decoration, position, color, onPress, onRef, link, size, underline, numberOfLines, onLayout, ...props }: TSTextProps) { return ( ); } export default TSText;