/* eslint-disable */ /* tslint:disable */ /** * This is an autogenerated file created by the Stencil compiler. * It contains typing information for all components that exist in this project. */ import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime"; export namespace Components { interface AppModal { "content"?: string | HTMLElement; "defaultButton"?: boolean; "onClose"?: () => void; "showModal": boolean; "title"?: string; "type": NotificationType; } } declare global { interface HTMLAppModalElement extends Components.AppModal, HTMLStencilElement { } var HTMLAppModalElement: { prototype: HTMLAppModalElement; new (): HTMLAppModalElement; }; interface HTMLElementTagNameMap { "app-modal": HTMLAppModalElement; } } declare namespace LocalJSX { interface AppModal { "content"?: string | HTMLElement; "defaultButton"?: boolean; "onClose"?: () => void; "showModal"?: boolean; "title"?: string; "type"?: NotificationType; } interface IntrinsicElements { "app-modal": AppModal; } } export { LocalJSX as JSX }; declare module "@stencil/core" { export namespace JSX { interface IntrinsicElements { "app-modal": LocalJSX.AppModal & JSXBase.HTMLAttributes; } } }