import React from 'react';
import { Device } from '../DeviceManager';
import { Block } from '../BlockManager';
import '../../styles/editor.css';
interface EditorProps {
    canvasUrl?: string;
    devices?: Device[];
    blocks?: Block[];
    showDeviceManager?: boolean;
    showBlockManager?: boolean;
    showPreview?: boolean;
}
declare const Editor: React.FC<EditorProps>;
export default Editor;
