export declare const MenuItem: ({ text, link, onClick, }: {
    text: string;
    link: string;
    onClick?: () => any;
}) => import("react/jsx-runtime").JSX.Element;
