//#region src/helpers/vault/server-side.d.ts declare function encryptWithKms(value: string): Promise<{ edkBase64: string; ciphertextBase64: string; }>; declare function decryptWithKms(encrypted: Awaited>): Promise; //#endregion export { decryptWithKms, encryptWithKms }; //# sourceMappingURL=server-side.d.ts.map