import type React from "react";
import type { DesignSystemLinkHref } from "../../routing";
interface ListLinkItemProps {
    children: React.ReactNode;
    href: DesignSystemLinkHref;
}
export declare function ListItemLink({ children, href }: ListLinkItemProps): import("react/jsx-runtime").JSX.Element;
export {};
