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

/** @slot  - A slot for adding content. */
export abstract class CarouselItem extends LitElement {
  /**
   * Specifies an accessible label for the component.
   *
   * @required
   */
  accessor label: string;
  /**
   * When `true`, the component is selected.
   *
   * @default false
   */
  accessor selected: boolean;
}