import { type HTMLAttributeAnchorTarget, type MouseEvent } from "react";
export declare const useLinkProps: ({ href, replace, target, }: {
href: string;
replace?: boolean | undefined;
target?: HTMLAttributeAnchorTarget | undefined;
}) => {
active: boolean;
onClick: (event: MouseEvent) => void;
};