export declare enum CipherStrategy {
    AES_GCM = "AES-GCM"
}
export declare const strategyToAlgorithm: (algorithm: string) => CipherStrategy;
