import type { ItemRef } from "../common/ItemRef.js";
import type { ServiceModelProperties } from "../common/ServiceModelProperties.js";
/**
 * Configuration for project service.
 */
export interface ProjectModelProperties extends ServiceModelProperties {
    /**
     * The active layout of VertiGIS Studio Web. This property is only
     * serialized to saved projects.
     */
    layout?: ItemRef;
}
