import { type ReactNode } from "react"; import { type IWidget } from "@gooddata/sdk-model"; interface IDashboardInsightMenuBubbleProps { widget: IWidget; onClose: () => void; isSubmenu?: boolean; children?: ReactNode; } export declare function DashboardInsightMenuBubble({ onClose, isSubmenu, widget, children }: IDashboardInsightMenuBubbleProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=DashboardInsightMenuBubble.d.ts.map