export default class PushwooshNotification {
private _canceled;
private readonly showNotificationOptions;
private readonly body;
private readonly title;
constructor(showNotificationOptions: NotificationOptions, body: string, title: string);
show(): Promise<void>;
cancel(): void;
}