export declare class Encryption {
    static encrypt: (text: string) => string | null;
    static decrypt: (text: string) => string | null;
}
