import { EventEmitter } from '../../../stencil-public-runtime'; export declare class Overlay { $focusableEls: HTMLElement[]; $focusedElBeforeOpen: HTMLElement; $content: HTMLElement; $el: HTMLElement; titleId: string; absolute: boolean; theme: 'dark' | 'light'; preventClose: boolean; shown: EventEmitter; hidden: EventEmitter; focusIndex: number; isShowing: boolean; show(): Promise; hide(): Promise; handleKeyDown(e: KeyboardEvent): void; handleEsc(): void; handleTab(e: KeyboardEvent): void; handleBackwardTab(): void; handleForwardTab(): void; handleScrimClick(): void; componentDidLoad(): void; render(): any; }