import { State } from '../shared/State';
declare class DataProtection {
    constructor({ pathToMasterKey, sessionKey, state, }: {
        pathToMasterKey?: string;
        sessionKey?: string;
        state: State;
    });
    encrypt(data: any): Promise<any>;
    decrypt(data: any): Promise<any>;
}
export default DataProtection;
//# sourceMappingURL=DataProtection.d.ts.map