import type * as React from 'react'; import { type GestureResponderEvent } from 'react-native'; export default function useLinkToPathProps(props: { href: string; event?: string; }): { href: string; role: "link"; onPress: (e?: React.MouseEvent | GestureResponderEvent) => void; }; //# sourceMappingURL=useLinkToPathProps.d.ts.map