import type { BundleEncryptOptions, EncryptResult } from '../schemas/bundle';
export type { EncryptResult } from '../schemas/bundle';
export declare function encryptZipInternal(zipPath: string, checksum: string, options: BundleEncryptOptions, silent?: boolean): Promise<EncryptResult>;
export declare function encryptZip(zipPath: string, checksum: string, options: BundleEncryptOptions): Promise<void>;
