import type { ModelProperties } from "./ModelProperties";
/**
 * Configuration for the geoData service.
 */
export interface GeoDataModelProperties extends ModelProperties {
    /**
     * The geoDataServiceUrl for the upload service that needs to import the
     * LPKX and FGDB files.
     */
    geoDataServiceUrl?: string;
    /**
     * The displayServiceUrl for the upload service that needs to import the
     * LPKX and FGDB files.
     */
    displayServiceUrl?: string;
}
