import { GroupEntity, UserEntity, OrganizationEntity } from '../..'; import { NOTIFICATION_CHANNEL } from '../enum'; import { RemoteRecord, TrackingEvents } from '../notification.entity'; export declare class NotificationBaseDto { channel?: NOTIFICATION_CHANNEL; topic?: string; content?: any; remoteRecord?: RemoteRecord; trackingEvents?: TrackingEvents; delivered?: boolean; organization?: OrganizationEntity; groups?: GroupEntity[]; createdByUser?: UserEntity; }