import type BlockState from "../types/BlockState"; /** * Move a block to a new position in the editor state. * @param state The editor state to modify. * @param blockId The ID of the block to move. * @param afterId The ID of the block to move the block after (if not provided, the block will be moved to the start of the editor state * * @returns The modified editor state. */ declare const moveBlock: (state: BlockState[], blockId: string, afterId?: string) => BlockState[]; export default moveBlock; //# sourceMappingURL=moveBlock.d.ts.map