import * as react_jsx_runtime from 'react/jsx-runtime'; import { Content } from '../types/email-editor.js'; interface BlockWrapperProps { block: Content; index: number; isFirst: boolean; isLast: boolean; isFixed?: boolean; } declare function BlockWrapper({ block, index, isFirst, isLast, isFixed, }: BlockWrapperProps): react_jsx_runtime.JSX.Element; export { BlockWrapper };