import { Relation } from 'typeorm'; import { AlertType } from './alertType'; import { Client } from './client'; import { User } from './user'; export declare class UserAlertComplain { id: number; userId: Buffer; user: Relation; alertTypeId: number; alertType: Relation; clientId: number; client: Relation; email: string; reason: string; createdAt: Date | null; }