/// <reference path="../../index.d.ts" />
import type { PublicLitElement as LitElement } from "@arcgis/lumina";

/**
 * @cssproperty [--calcite-scrim-background] - Specifies the component's background color.
 * @slot  - A slot for adding custom content, primarily loading information.
 */
export abstract class Scrim extends LitElement {
  /**
   * When `true`, a busy indicator is displayed.
   *
   * @default false
   */
  accessor loading: boolean;
  /** Overrides individual strings used by the component. */
  accessor messageOverrides: { loading?: string; };
}