export declare function xorEncode(input: string, key: string): string;
export declare function xorEncode(input: Uint8Array, key: string): string;
export declare function xorDecode(input: string, key: string): string;
export declare function xorDecode(input: Uint8Array, key: string): string;