import Component from '../../components/animated-image/animated-image.js'; import { type EventName } from '@lit/react'; import type { WaErrorEvent, WaLoadEvent } from '../../events/events.js'; export type { WaErrorEvent, WaLoadEvent } from '../../events/events.js'; /** * @summary Animated images display GIFs and WEBPs with controls to play and pause them on demand. Use them when you * want motion but need to give users control over when it plays. * @documentation https://webawesome.com/docs/components/animated-image * @status stable * @since 2.0 * * @dependency wa-icon * * @event wa-load - Emitted when the image loads successfully. * @event wa-error - Emitted when the image fails to load. * * @slot play-icon - Optional play icon to use instead of the default. Works best with ``. * @slot pause-icon - Optional pause icon to use instead of the default. Works best with ``. * * @csspart control-box - The container that surrounds the pause/play icons and provides their background. * * @cssproperty --control-box-size - The size of the icon box. * @cssproperty --icon-size - The size of the play/pause icons. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onWaError: EventName; }>; export default reactWrapper;