export declare class ShiftCipher {
    private cipherMap;
    constructor();
    encode(str: string): string;
    decode(str: string): string;
    makeCipherMap({ chars, shift }: {
        chars: string;
        shift: number;
    }): void;
    private get reversedCipherMap();
    private rotateChars;
}
