/** * Manual Download Export * * Exports a Markdown checklist of plugins requiring manual download. * Users can check off items as they download them. * * @since v2.4.27 */ export interface ManualDownloadEntry { name: string; currentVersion: string; latestVersion: string; sourceUrl?: string; sourceType?: string; } export interface ExportManualOptions { entries: ManualDownloadEntry[]; serverName?: string; outputPath?: string; } export declare function exportManualDownloads(options: ExportManualOptions): Promise; //# sourceMappingURL=manual-export.d.ts.map