import type { Model } from "./Model"; /** * Definition for Message model * Represents {@link Domain!Message} * * @typedef {Object} MessageModel * @see Domain.Message */ export interface Message extends Model { /** * Stringified JSON values */ dataJson: string; id?: string; createdTime?: number; thid?: string; piuri?: string; from?: string; to?: string; isReceived?: number; } export declare const MessageSchema: import("@trust0/ridb-core").SchemaType & { required: string[]; encrypted: []; };