import { ChannelRB } from '../../models/channel.model'; import { Contact } from '../../models/contact.model'; declare class FileViewerType { static USER: string; static ROOM: string; } /** * This class is used to represent a File Viewer who is the list of persons (individual or a bubble) that can access (download) the file. */ export declare class FileViewer { viewerId: string; type: FileViewerType; contact: Contact; room: any; channel: ChannelRB; static createFromData(data: any): FileViewer[]; private constructor(); } export {}; //# sourceMappingURL=fileViewer.d.ts.map