/** * Export command — port from beta CLI * Exports squad to squad-export.json (local or GitHub repo) */ export interface ExportRepoOptions { repo: string; branch?: string; } /** * Export squad to JSON (local file or GitHub repo) */ export declare function runExport(dest: string, outPath?: string, repoOptions?: ExportRepoOptions): Promise; //# sourceMappingURL=export.d.ts.map