import { ISerializable, Serializable } from "@js-soft/ts-serval"; import { CoreId, ICoreId } from "@nmshd/core-types"; export interface ILocalNotificationSource extends ISerializable { type: "Message"; reference: ICoreId; } export declare class LocalNotificationSource extends Serializable implements ILocalNotificationSource { type: "Message"; reference: CoreId; static from(value: ILocalNotificationSource): LocalNotificationSource; static message(reference: CoreId): LocalNotificationSource; } //# sourceMappingURL=LocalNotificationSource.d.ts.map