import type { BlockConfiguration } from '@wordpress/blocks'; export declare function updateBlockSettings = Record>(name: string, updater: (settings: BlockConfiguration) => Partial> | BlockConfiguration): boolean; /** * Restore original settings for all blocks modified via these helpers. * Returns the list of block names successfully restored. */ export declare function restoreAllModifiedBlockSettings(): string[];