import { Notifications, AlertOptions as BaseAlertOptions, ConfirmOptions as BaseConfirmOptions, NotificationOptions as BaseNotificationOptions, ReportOptions as BaseReportOtions } from '../../../lime-web-components/src'; /** * @deprecated use {@link Notifications} from `@limetech/lime-web-components` instead */ export interface NotificationService extends Notifications { } /** * @deprecated use {@link BaseAlertOptions AlertOptions} from `@limetech/lime-web-components` instead */ export interface AlertOptions extends BaseAlertOptions { } /** * @deprecated use {@link BaseConfirmOptions ConfirmOptions} from `@limetech/lime-web-components` instead */ export interface ConfirmOptions extends BaseConfirmOptions { } /** * @deprecated use {@link BaseNotificationOptions NotificationOptions} from `@limetech/lime-web-components` instead */ export interface NotificationOptions extends BaseNotificationOptions { } /** * @deprecated use {@link BaseReportOtions ReportOptions} from `@limetech/lime-web-components` instead */ export interface ReportOptions extends BaseReportOtions { }