import { Relation } from 'typeorm'; import { RetailClientAlertConfiguration } from './retailClientAlertConfiguration'; export declare enum ExternalRecipientNotificationType { EMAIL = 1, SMS = 2 } export declare class RetailAlertExternalRecipient { id: number; clientId: number; notificationType: ExternalRecipientNotificationType; recipient: string; isEnabled: boolean; createdAt: Date; modifiedAt?: Date | null; unsubscribed: boolean; unsubscribedInfo: string; retailClientAlertConfigurationId?: number | null; retailClientAlertConfiguration?: Relation; }