import * as react_jsx_runtime from 'react/jsx-runtime'; import { Email, EmailStyle, EmailBlock } from '../types/email-editor.js'; import { BlockRegistry } from '../types/block-registry.js'; import 'react'; interface BlockSettingsPanelProps { blockId: string | null; email: Email; setSelectedBlockId: (id: string | null) => void; blockRegistry: BlockRegistry; updateEmail: (email: Email) => void; updateEmailStyle: (style: Partial) => void; updateBlock: (id: string, content: Partial) => void; } declare function BlockSettingsPanel({ blockId, email, setSelectedBlockId, blockRegistry, updateEmail, updateEmailStyle, updateBlock, }: BlockSettingsPanelProps): react_jsx_runtime.JSX.Element | null; export { BlockSettingsPanel };