export default class Cipher { key: number; constructor(key: number); encrypt(s: string): string; decrypt(s: string): string; } //# sourceMappingURL=Cipher.d.ts.map