import type { FunctionComponent } from 'react'; import type { TouchableHighlightProperties } from 'react-native'; export interface TouchableHighlightLinkProps extends TouchableHighlightProperties { href?: string; } export declare const TouchableHighlightLink: FunctionComponent;