import { StorageTransform } from "../abstractions/StorageTransform.js"; import { Encryption } from "@webiny/api-core/features/encryption/index.js"; import { TextFieldTypes } from "../../../features/modelBuilder/index.js"; declare class EncryptedTextStorageTransformImpl implements StorageTransform.Interface { private readonly encryption; readonly fieldType = TextFieldTypes.ENCRYPTED; constructor(encryption: Encryption.Interface); fromStorage(params: StorageTransform.FromStorageParams): StorageTransform.FromStorageResponse; toStorage(params: StorageTransform.ToStorageParams): StorageTransform.ToStorageResponse; } export declare const EncryptedTextStorageTransform: typeof EncryptedTextStorageTransformImpl & { __abstraction: import("@webiny/di").Abstraction>; }; export {};