/** * Pattern Export Pipeline * Export patterns with anonymization and optional IPFS upload */ import type { CFPFormat, ExportOptions, ExportResult } from './types.js'; /** * Export patterns to file or IPFS */ export declare function exportPatterns(cfp: CFPFormat, options?: ExportOptions): Promise; /** * Export Seraphine genesis model */ export declare function exportSeraphine(options?: ExportOptions): Promise; /** * Quick export to file */ export declare function quickExport(cfp: CFPFormat, outputPath: string): Promise; /** * Quick export to IPFS */ export declare function quickExportToIPFS(cfp: CFPFormat, options?: { gateway?: string; pin?: boolean; }): Promise; //# sourceMappingURL=export.d.ts.map