import { type Target } from '../model/LinkProps'; export declare const isURL: (href: string | undefined) => href is `${string}:${string}`; export declare const isLocalURL: (href: string | undefined, target?: Target) => boolean; export declare const isHash: (href: string | undefined) => href is `#${string}`; export declare const withoutQuery: (href: string | undefined) => string; export declare const joinPath: (...path: (string | undefined | null)[]) => string; export declare const hasPrefix: (href?: string) => (prefix?: string) => boolean;