import Component from '../../components/resize-observer/resize-observer.js'; import { type EventName } from '@lit/react'; import type { WaResizeEvent } from '../../events/events.js'; export type { WaResizeEvent } from '../../events/events.js'; /** * @summary Resize observers watch their slotted elements for size changes and emit an event when they occur. Provides a * thin, declarative interface to the browser's ResizeObserver API. * @documentation https://webawesome.com/docs/components/resize-observer * @status stable * @since 2.0 * * @slot - One or more elements to watch for resizing. * * @event {{ entries: ResizeObserverEntry[] }} wa-resize - Emitted when the element is resized. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; }>; export default reactWrapper;