import { App } from "../../App"; import { AtomUri } from "../../core/AtomUri"; import { JsonService } from "../../services/JsonService"; import { NavigationService, NotifyType } from "../../services/NavigationService"; export default class XFNavigationService extends NavigationService { private jsonService; private stack; title: string; location: AtomUri; constructor(app: App, jsonService: JsonService); alert(message: string | any, title?: string): Promise; confirm(message: string, title?: string): Promise; notify(message: string, title?: string, type?: NotifyType, delay?: number): void; navigate(url: string): void; back(): void; refresh(): void; protected openWindow(url: AtomUri): Promise; } //# sourceMappingURL=XFNavigationService.d.ts.map