import type { FeatureListProperties as ApiFeatureListProperties } from "@vertigis/arcgis-extensions/data/FeatureList";
import type { ItemRef } from "../common/ItemRef.js";
import type { FeatureSetProperties } from "./FeatureSetProperties.js";
/**
 * Properties for a FeatureList.
 */
export interface FeatureListProperties extends Omit<ApiFeatureListProperties, "featureSet"> {
    /**
     * @inheritdoc
     */
    featureSet?: (FeatureSetProperties | ItemRef)[];
}
