export interface ResolvedLinkHref { external: boolean; href: string; } /** * Treat an absolute URL on the configured production origin as app-local. * Keeping the path, query, and hash makes canonical links navigate internally * on production domains and previews alike. */ export declare const resolveLinkHref: (href: string, siteUrl?: string) => ResolvedLinkHref; /** Strip the Next.js base path before handing an href to `next/link`. */ export declare const stripBasePathFromHref: (href: string, basePath?: string) => string; //# sourceMappingURL=link-href.d.ts.map