export default class Cipher {
    encrypt: (message: string, key: string) => string;
    decrypt: (message: string, key: string) => string;
}
