import { Role } from '../../role/entities/role.entity';
import { NotificationType } from '../enums/notification-type.enum';
export declare class NotificationConfig {
    id: number;
    event_type: NotificationType;
    role_id: number;
    description: string;
    is_active: boolean;
    created_at: Date;
    role: Role;
}
