export default class Message { from: string; content: any; timestamp: number; constructor(from: string, content: any, timestamp: number); getFrom(): string; getContent(): any; getTimestamp(): number; static emptyMessage(): Message; }