import React from "react"; import { ReportEvent } from "../../../../types/report"; import { Menus } from "../../utils/netdata-dashboard"; interface RenderSingleMenuArgument { currentChart: string; handleScrollToId: (event: React.MouseEvent) => void; menus: Menus; reportEvent: ReportEvent; } export declare const renderSingleMenu: ({ currentChart, handleScrollToId, menus, reportEvent, }: RenderSingleMenuArgument) => (menuName: string) => JSX.Element; export {};