import { HTMLProps } from "react";
type Props = Omit<HTMLProps<HTMLAnchorElement>, "href"> & {
    href: string;
};
declare const Link: ({ children, onClick, ...props }: Props) => import("react/jsx-runtime").JSX.Element;
export default Link;
//# sourceMappingURL=Link.d.ts.map