import { type LinkProps } from "wouter";
export declare const relativePath: (base?: string, path?: string) => string;
export declare const absolutePath: (to: any, base?: string) => any;
export declare const stripQm: (str: any) => any;
export declare const unescape: (str: any) => any;
export declare function isLinkActive(href: string, strictness?: number): boolean;
export declare function Link({ className, native, onClick, ...props }: {
    className?: string;
    native?: boolean;
    transition?: boolean;
} & LinkProps): import("react/jsx-runtime").JSX.Element;
