/** * Import command — port from beta CLI * Imports squad from squad-export.json (local file or GitHub repo) */ export interface ImportRepoOptions { repo: string; branch?: string; } /** * Import squad from JSON (local file or GitHub repo) */ export declare function runImport(dest: string, importPath: string, force: boolean, repoOptions?: ImportRepoOptions): Promise; //# sourceMappingURL=import.d.ts.map