import { FC } from 'react'; import { TextProps } from 'react-native'; interface LinkProps extends TextProps { /** URL to open when the text is pressed */ href: string; } export declare const Link: FC; export {};