import { PanelRef } from './panels'; export type LayoutDefinition = GridDefinition; export interface GridDefinition { kind: 'Grid'; spec: { display?: { title: string; collapse?: { open: boolean; }; }; items: GridItemDefinition[]; repeatVariable?: string; }; } export interface GridItemDefinition { x: number; y: number; width: number; height: number; content: PanelRef; } //# sourceMappingURL=layout.d.ts.map