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