import React from 'react'; import './Editor.scss'; export interface Row { id: string; size: number; columns: { id: string; size: number; data: any; }[]; } export interface EditorProps { name: string; value?: Row[]; label?: string; } export declare const Editor: React.FC;