import React from 'react'; import type { DraggableProvidedDragHandleProps } from 'react-beautiful-dnd'; import { VisualizationType } from '../types/visualization'; interface Props { dashboardItem: VisualizationType; index: number; isMultiPanelView: boolean; handleClosePanel: (dashboardItem: VisualizationType) => void; dragHandleProps: DraggableProvidedDragHandleProps | null | undefined; getDashboardItemByType: (props: { type: VisualizationType; isHalfScreen: boolean; }) => JSX.Element; actionButtons: { flame: JSX.Element; table: JSX.Element; }; } export declare const VisualizationPanel: React.NamedExoticComponent; export {}; //# sourceMappingURL=VisualizationPanel.d.ts.map