import * as React from 'react'; import type { DME, DMEData } from '../../types'; interface BlockRenderProps extends Pick { data: DMEData.Block; inBlock?: boolean; } export declare const BlockRender: React.FC; export declare const RenderMenu: (props: { onAdd: (type: string, template?: string) => void; onCancel: () => void; allowedType?: string[] | undefined; }) => import("react/jsx-runtime").JSX.Element; export declare const getStyleCss: (blocktype: string, styleIdentifier?: string) => string; export declare const getCommonBlockCss: (blockType: string, styleIdentifier?: string) => string; export {};