import * as react_jsx_runtime from 'react/jsx-runtime'; import { BlockRegistry } from '../types/block-registry.js'; import 'react'; interface AddBlockButtonProps { position: "above" | "below"; index: number; addBlock: (blockType: string, index: number) => void; blockRegistry: BlockRegistry; } declare function AddBlockButton({ position, index, addBlock, blockRegistry, }: AddBlockButtonProps): react_jsx_runtime.JSX.Element; export { AddBlockButton };