import type { FunctionComponent } from 'react'; import type { TouchableOpacityProperties } from 'react-native'; export interface TouchableOpacityLinkProps extends TouchableOpacityProperties { href?: string; } export declare const TouchableOpacityLink: FunctionComponent;