import type BlockState from "../types/BlockState"; /** * Edit a block in the editor state. * @param state The editor state to modify. * @param block The block to edit. * @param updatedProperties The properties to update on the block. * @param updatedType The type to update on the block. * * @returns The modified editor state. */ declare const editBlock: (state: BlockState[], blockId: string, updatedProperties?: Record | ((currentProperties: Record) => Record) | undefined, updatedType?: string | ((currentType: string) => string) | undefined) => BlockState[]; export default editBlock; //# sourceMappingURL=editBlock.d.ts.map