import type { FunctionComponent } from 'react'; import type { TouchableWithoutFeedbackProperties } from 'react-native'; export interface TouchableWithoutFeedbackLinkProps extends TouchableWithoutFeedbackProperties { href?: string; } export declare const TouchableWithoutFeedbackLink: FunctionComponent;