interface IManifest { name: string; description: string; short_name: string; start_url: string; display: string; icons: any[]; background_color: string; screenshots: any[]; categories: string[]; theme_color: string; } export declare class InstallPopover { path: string; iconPath: string; installEvent: any; manifestData: IManifest; el: HTMLElement; componentWillLoad(): Promise; install(): Promise; cancel(): void; render(): any; } export {};