import type { FeatureInfoModelProperties } from "./FeatureInfoModelProperties.js";
import type { FeatureListProperties } from "./FeatureListProperties.js";
/**
 * Properties for a feature-details component.
 */
export interface FeatureDetailsModelProperties extends FeatureInfoModelProperties {
    /**
     * The set of features contained by the feature-details model. This property
     * is only serialized into saved projects. Web only.
     */
    results?: FeatureListProperties;
    /**
     * Whether or not the attributes from all one-to-one related records in a
     * feature will display as if they part of the feature. All one-to-one
     * related records will also not display in the Related Records section
     * while this is enabled. Defaults to true. Web only.
     */
    enableOneToOneAttributeDisplay?: boolean;
}
