import { Relation } from 'typeorm'; import { LiveLinkMedia } from './liveLinkMedia'; export declare class LiveLink { id: string; name: string; clientId: number; status: string; startDate: Date | null; endDate: Date | null; deviceAccess: string; devices: object | null; createdAt: Date | null; createdBy: string | null; modifiedAt: Date | null; modifiedBy: string | null; historyAccess: boolean; estimatedTheftValue: number | null; licensePlate: string | null; suspectDescription: string | null; logoFileName: string | null; logoS3FilesPath: string | null; medias: Relation[]; generateDefaults(): void; updateModifiedAt(): void; }