import { User } from './user.entity'; export declare class NotificationPreference { id: number; userId: number; messagesEmailOnOffline: boolean; messagesPushEnabled: boolean; categoryChannels: string | null; user: User; }