import { EEventMessage } from '../enums';
import { IEventMessage } from '../interfaces/i-event-message';
export declare class EventMessageEntity implements IEventMessage {
    companyId: string | null;
    containerId: string | null;
    createdAt: Date;
    customerId: string | null;
    description: string | null;
    event: EEventMessage;
    id: string;
    partnerId: string | null;
    recipients: string[];
    updatedAt: Date;
    constructor(data?: Partial<EventMessageEntity>);
}
