import React from "react"; declare type Props = { children: React.ReactNode; to: string; title?: string; }; declare function MenuItem({ to, title, children, ...props }: Props): JSX.Element; export default MenuItem; //# sourceMappingURL=MenuItem.d.ts.map