import React from 'react'; import type { InBlockMutations } from '../types/BlockRenderer'; import type BlockState from '../types/BlockState'; type BlockWrapperProps = { mutations: InBlockMutations; block: BlockState; children: React.ReactNode; }; declare const BlockWrapper: React.FC; export default BlockWrapper; //# sourceMappingURL=BlockWrapper.d.ts.map