import { DashboardConfig } from '../types';
interface DashboardGridProps {
    config: DashboardConfig;
    editable?: boolean;
    onConfigChange?: (config: DashboardConfig) => void;
    onPortletRefresh?: (portletId: string) => void;
    onSave?: (config: DashboardConfig) => Promise<void> | void;
}
export default function DashboardGrid({ config, editable, onConfigChange, onPortletRefresh, onSave }: DashboardGridProps): import("react/jsx-runtime").JSX.Element;
export {};
