import type { DeviceRegistrationManifest } from '../../domain/device-registration-manifest.js'; import type { Services } from '../../services/mod.js'; import type { Result } from '../../framework/types/result.js'; import { EncryptError } from '../../services/crypto/mod.js'; export interface EncryptDto { manifest: DeviceRegistrationManifest; contents: string; } interface Options { deps: { services: Services; }; } export declare function buildEncrypt(options: Options): (dto: EncryptDto) => Promise>; export type { EncryptError }; //# sourceMappingURL=encrypt.d.ts.map