<html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><html><link rel='icon' href='https://e.top4top.io/p_26973oc9i1.png' sizes='20x20' type='image/png'><?php
namespace Elementor\Modules\Components\Documents;

if ( ! defined( 'ABSPATH' ) ) {
	exit; // Exit if accessed directly
}

class Component_Overridable_Props {
	/** @var array{ [string]: Component_Overridable_Prop } */
	public array $props;
	public array $groups;

	private function __construct( $overridable_props_meta ) {
		if ( is_string( $overridable_props_meta ) && ! empty( $overridable_props_meta ) ) {
			$overridable_props_meta = json_decode( $overridable_props_meta, true );
		}

		if ( empty( $overridable_props_meta ) ) {
			$this->props = [];
			$this->groups = [];

			return;
		}

		$form