import type { AnchorHTMLAttributes, ReactNode } from "react";
interface LocalizedLinkProps extends AnchorHTMLAttributes {
children: ReactNode;
href: string;
}
/**
* Resolve an app-local href against the active language segment. See
* `localizeHref` for the prefixing rules.
*/
export declare const useLocalizedHref: (href: string) => string;
export declare const LocalizedLink: ({ href, ...props }: LocalizedLinkProps) => import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=localized-link.d.ts.map