import BaseEncryptor from '../Core/Encryptor'; declare class SuiteEncryptor extends BaseEncryptor { protected suiteId: string; protected token: string; protected aesKey: string | Buffer; constructor(suiteId?: string, token?: string, aesKey?: string | Buffer); } export = SuiteEncryptor;