export interface EncryptedMessage {
    data: string;
    nonce: string;
    isText: boolean;
}
