import type { ComponentJson, ExtensionDescriptorProperty } from "./types.js";
/**
 * A function that maps two JSON arrays.
 *
 *
 * @file   This file defines the property_processor web worker used in
 *         ai_project::Component::loadProperties.
 * @author vishwas@kodular.io (Vishwas Adiga)
 * @since  1.0.0
 * @license
 */
export declare function process_properties(propertyJSON: ComponentJson, descriptorJSON: ExtensionDescriptorProperty[]): {
    name: string;
    value: string;
    editorType?: string;
}[];
