import { ComponentInterface } from '../../stencil-public-runtime'; export declare class Overlay implements ComponentInterface { visible: boolean; noAnimation: boolean; shown: boolean; fadeIn: boolean; fadeOut: boolean; watchShown(visible: boolean): void; show(): Promise; hide(): Promise; componentDidLoad(): void; hostData(): { class: { show: boolean; hide: boolean; fadeIn: boolean; fadeOut: boolean; }; }; }