import Component from '../../components/mutation-observer/mutation-observer.js'; import { type EventName } from '@lit/react'; import type { WaMutationEvent } from '../../events/events.js'; export type { WaMutationEvent } from '../../events/events.js'; /** * @summary Mutation observers watch for changes to an element's DOM tree and emit an event when they occur. Provides a * thin, declarative interface to the browser's MutationObserver API. * @documentation https://webawesome.com/docs/components/mutation-observer * @status stable * @since 2.0 * * @event {{ mutationList: MutationRecord[] }} wa-mutation - Emitted when a mutation occurs. * * @slot - The content to watch for mutations. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; }>; export default reactWrapper;