import * as React from 'react'; import './DashboardGrid.scss'; export interface DashboardGridProps { onAddItem: () => any; onConfigItem: (item: any) => any; onRemoveItem: (item: any) => any; onDashboardConfig: (download: any) => any; onSaveConfig: (download: any) => any; title?: string; rowHeight?: number; defaultBreakpoint?: string; } /** * This layout demonstrates how to use a grid with a dynamic number of elements. */ export declare const DashboardGrid: React.FC;