interface OPtion {
PUBLICKEY: string;
KEY: string;
CHANNEL: string;
RANDOM: string;
PARAMS: string;
DEBUG: boolean;
}
export default class EncryptionAgr {
options: OPtion;
constructor(options: any);
getAuthToken(): string;
encryption(): string;
}
export {};