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

/** @since 5.0 */
export interface SlideGroundProperties extends Partial<Pick<SlideGround, "opacity">> {}

/** @since 5.0 */
export default class SlideGround extends SlideGroundSuperclass {
  constructor(properties?: SlideGroundProperties);
  /**
   * Ground opacity
   *
   * @since 5.0
   */
  accessor opacity: number | null | undefined;
}
declare const SlideGroundSuperclass: typeof JSONSupport & typeof ClonableMixin