import { Model } from '../model'; import { Transaction } from './transaction'; export declare type MessageData = Model & { dataUrl?: string; hash?: string; modifiedAt?: string; filename?: string; size?: number; type?: string; }; export declare type Message = Model & { data?: MessageData; sender?: string; timestamp?: string; tx?: Transaction; }; //# sourceMappingURL=message.d.ts.map