/**
 * The interface for encrypted message
 * @see [[encryptMessage]]
 * @module crypto
 */
export interface EncryptedMessage {
    data: string;
    nonce: string;
    isText: boolean;
}
