import React from 'react'; import { TextStyle, Insets } from 'react-native'; export interface LinkProps { children?: React.ReactNode; label?: string; href?: string; onPress?: () => void; underline?: boolean; color?: string; disabled?: boolean; style?: TextStyle | TextStyle[]; accessibilityLabel?: string; numberOfLines?: number; hitSlop?: Insets; testID?: string; } declare const Link: React.FC; export default Link; //# sourceMappingURL=Link.d.ts.map