/** * Modify template actions for email templates. * * This is a workaround for the new "Active Templates" feature in WordPress/Gutenberg. * When the Active Templates feature is enabled, it introduces new template actions * that don't align well with the email editor's requirements. The email editor currently * does not have template management capabilities so we miss tools needed for Active Templates. * * This solution maintains the previous reset template behavior until we identify a * better long-term approach that aligns with WordPress core's Active Templates feature. */ /** * Modify template actions for email editor. * - Removes duplicate action (not needed for email templates) * - Replaces Gutenberg's reset action with custom implementation */ declare function modifyTemplateActions(): void; export { modifyTemplateActions };