import { LitElement } from 'lit'; declare const NAME = "canary-modal"; export declare const MODAL_CLOSE_EVENT = "modal-close"; /** * @csspart dialog - Dialog */ export declare class CanaryModal extends LitElement { open: boolean; transition: boolean; private _ref; render(): import('lit-html').TemplateResult<1>; private _handleOpen; private _handleModalClose; static styles: import('lit').CSSResult[]; } declare global { interface HTMLElementTagNameMap { [NAME]: CanaryModal; } namespace JSX { interface IntrinsicElements { [NAME]: any; } } } export {};