import Component from '../../components/include/include.js'; import { type EventName } from '@lit/react'; import type { WaIncludeErrorEvent, WaLoadEvent } from '../../events/events.js'; export type { WaIncludeErrorEvent, WaLoadEvent } from '../../events/events.js'; /** * @summary Fetches an external HTML file and embeds its contents inline on the page. Useful for reusing shared markup * like headers, footers, and partials across multiple pages. * @documentation https://webawesome.com/docs/components/include * @status stable * @since 2.0 * * @event wa-load - Emitted when the included file is loaded. * @event {{ status: number }} wa-include-error - Emitted when the included file fails to load due to an error. */ declare const reactWrapper: import("@lit/react").ReactWebComponent; onWaIncludeError: EventName; }>; export default reactWrapper;