import { CannoliETopics } from '../../cannoli';
import { INotify } from '../interfaces';
export declare class NotifyEntity implements INotify {
    active?: boolean;
    companyId: string;
    containerId: string;
    createdAt: number | Date;
    data: any;
    eventId: string;
    id: string;
    notified: boolean;
    notifiedAt: number | null;
    topic: CannoliETopics;
    topicId: string;
    updatedAt: number | Date;
    version?: string;
    constructor(data?: Partial<NotifyEntity>);
}
