import Link from 'next/link';
import React from 'react';
type Props = React.ComponentProps<typeof Link>;
export default function PHXLink({ href, children, ...rest }: Props): React.JSX.Element;
export {};
