import { VirtualChildren } from 'ssrsxjsx/jsx-runtime';
declare const Link: ({ tag, to, end, caseSensitive, event, children, ...rest }: {
    [key: string]: unknown;
    tag?: string | undefined;
    to: string;
    end?: boolean | undefined;
    caseSensitive?: boolean | undefined;
    event?: string | undefined;
    children: VirtualChildren;
}) => Promise<import("ssrsxjsx/jsx-runtime").VirtualElementCore>;
export default Link;
export { Link, Link as NavLink };
