import type { ClonableMixin } from "../../core/Clonable.js";
import type { JSONSupport } from "../../core/JSONSupport.js";

export interface SmoothingPropertiesProperties extends Partial<Pick<SmoothingProperties, "enabled">> {}

/**
 * Defines the Smoothing properties of Indoor Positioning Configuration.
 *
 * @since 4.33
 */
export default class SmoothingProperties extends SmoothingPropertiesSuperclass {
  constructor(properties?: SmoothingPropertiesProperties);
  /**
   * Indicates whether smoothing is enabled for the IPS data.
   *
   * @default false
   */
  accessor enabled: boolean;
}
declare const SmoothingPropertiesSuperclass: typeof JSONSupport & typeof ClonableMixin