/** * Replace a specific block with markdown content * @param blockId The ID of the block to replace * @param markdownContent The new markdown content for the block * @returns A confirmation message */ export declare const handler: (blockId: string, markdownContent: string) => Promise;