import type { ItemRef } from "../common/ItemRef.js";
import type { LayerListModelProperties as CommonLayerListModelProperties } from "../common/LayerListModelProperties.js";
import type { ComponentModelProperties } from "./ComponentModelProperties.js";
/**
 * @inheritdoc
 */
export interface LayerListModelProperties extends CommonLayerListModelProperties, ComponentModelProperties {
    /**
     * Whether or not the layer list will allow the drawing order of layers to
     * be changed. Defaults to true.
     */
    canReorder?: boolean;
    /**
     * A reference to a Menu containing layer actions (menu items that take a
     * layer as context).
     */
    layerActions?: ItemRef;
}
