import { EventEmitter } from '../../stencil-public-runtime'; export declare class Include { host: HTMLSlIncludeElement; html: string; src: string; mode: 'cors' | 'no-cors' | 'same-origin'; allowScripts: boolean; slLoad: EventEmitter; slError: EventEmitter<{ status?: number; }>; handleSrcChange(): void; componentWillLoad(): void; executeScript(script: HTMLScriptElement): void; loadSource(): Promise; render(): any; }