import LibraryBaseElement from '../../internal/library-base-element.js'; import type { CSSResultGroup } from 'lit'; /** * @summary Includes give you the power to embed external HTML files into the page. * @documentation /components/include * @status stable * @since 1.5 * * @event o-load - Emitted when the included file is loaded. * @event {{ status: number }} o-error - Emitted when the included file fails to load due to an error. */ export default class OInclude extends LibraryBaseElement { static styles: CSSResultGroup; /** * The location of the HTML file to include. Be sure you trust the content you are including as it will be executed as * code and can result in XSS attacks. */ src: string; /** The fetch mode to use. */ mode: 'cors' | 'no-cors' | 'same-origin'; /** * Allows included scripts to be executed. Be sure you trust the content you are including as it will be executed as * code and can result in XSS attacks. */ allowScripts: boolean; private executeScript; handleSrcChange(): Promise; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'o-include': OInclude; } }