import type BlockState from "../types/BlockState"; /** * Remove a block from the editor state. * @param state The editor state to modify. * @param blockId The ID of the block to remove. * * @returns The modified editor state. */ declare const removeBlock: (state: BlockState[], blockId: string) => BlockState[]; export default removeBlock; //# sourceMappingURL=removeBlock.d.ts.map