import type { ModelProperties } from "@vertigis/viewer-spec/app-config/common/ModelProperties"; import { ModelBase } from "../models"; import type { ConfigurableService } from "./ConfigurableService"; /** * Base properties for an instance of `ConfigurableServiceBase`. */ export interface ConfigurableServiceProperties extends ModelProperties { } /** * Base class for service that have serializable configuration. */ export declare abstract class ConfigurableServiceBase extends ModelBase implements ConfigurableService { }