import { Element, Template } from '../../../types';
import { Property } from '../../../types/property';

export declare const serializeProperties: (properties: Property[], elements: Element[], templates: Template[]) => {
    prop_value: {} | null;
    element_id: string | null;
    template_id: string | null;
    prop_name: string;
    project_id: string;
    prop_id: string;
    component_id: string | null;
    action_ids?: string[];
    viewport: string | null;
}[];
