import React from 'react'; import type { DME, DMEData } from '../../types/dmeditor'; interface BlockListProps { blockData: DMEData.BlockList; path: Array; allowedTypes?: string[]; isEmbed?: boolean; direction?: 'vertical' | 'horizontal'; mode: DME.Mode; } export declare const BlockListRender: React.FC; export {};