/** * Template downloader from GitHub releases */ import { TemplateFiles } from './types'; export declare function downloadTemplates(version?: string): Promise; /** * Downloads templates from a direct URL (e.g., website API endpoint) */ /** * Loads templates from a local directory (development, tests, or `reconstruct install --with-skills`). */ export declare function loadTemplatesFromLocal(localPath: string, version?: string, options?: { silent?: boolean; }): Promise; //# sourceMappingURL=downloader.d.ts.map