///
import { NotificationConfiguration } from './NotificationConfiguration.js';
import '../commons/Color.js';
import '../private/Serializable.js';
import '../ScanditIcon.js';
import '../private/utils/ScanditHTMLElement.js';
import './NotificationStyle.js';
interface NotificationPresenter {
showNotification(notificationConfiguration: NotificationConfiguration): Promise;
hideNotification(notificationConfiguration: NotificationConfiguration): Promise;
}
export type { NotificationPresenter };