import type { ServiceModelProperties } from "./ServiceModelProperties.js";
/**
 * Configuration for the Analytics Service.
 */
export interface AnalyticsModelProperties extends ServiceModelProperties {
    /**
     * The URL used by VertiGIS Studio Analytics for tracking this application.
     */
    url?: string;
    /**
     * Indicates whether the application should anonymize user information in
     * analytics. Default is `true`, meaning user information is anonymized.
     */
    anonymizeUserInfo?: boolean;
}
