import type { DMEData } from '../types'; export type LayoutMode = 'pc' | 'mobile' | 'tablet'; declare function createDMEditor(): { selected: { blockId: string; blockIndex: number; currentListPath: number[]; }; storage: DMEData.BlockList; page: { title: string; }; mode: "edit" | "view"; hoverPath: undefined; addBlockData: undefined; recentColors: string[]; }; export { createDMEditor };