export default class Inbox { address: string; token: string; /** * Inbox entity. * * @param address {string} The address of the inbox. * @param token {string} The token of the inbox. */ constructor(address: string, token: string); }