import React from "react"; export interface GridLayout { i: string; x: number; y: number; w: number; h: number; } export interface GridLayoutItem { id: string; label?: string; total?: string; extras?: any; x: number; y: number; w: number; h: number; } export interface GraphGridProps { className?: string; onRemoveItem?: (item: GridLayoutItem) => void; onLayoutChange: (layout: GridLayout[]) => void; layout: GridLayoutItem[]; children: (item: GridLayoutItem) => React.ReactNode; noWrap?: boolean; rowHeight?: number; cols?: { [key: string]: number; }; breakpoints?: { [key: string]: number; }; } export declare const BaseGraphGrid: React.FC; export declare const GraphGrid: import("styled-components").StyledComponent, any, {}, never>;