import * as react from 'react'; import { ComponentType, Ref } from 'react'; import { GestureResponderEvent, StyleProp, ViewStyle } from 'react-native'; import { U as Url } from '../../types-3e2ea54d.js'; import 'next/types'; declare type WrapperProps = { onPress?: (event: GestureResponderEvent) => void; ref?: Ref; style?: StyleProp | StyleProp[]; }; interface LinkProps { area?: string; as?: string; children?: any; href?: Url; locale?: string; scroll?: boolean; shallow?: boolean; style?: any | any[]; wrapper?: ComponentType; } declare const Link: react.ForwardRefExoticComponent>; export { Link, Link as default };