#!/usr/bin/env bun
/**
 * TrellisVCS CLI
 *
 * Commands:
 *   init     Initialize a new TrellisVCS repository
 *   status   Show current repository status
 *   log      Show operation history
 *   watch    Start file watcher (foreground)
 *   lane     Agent lanes — isolated op journals
 *   files    List tracked files
 *   import   Import from a Git repository
 */
export type IdeType = 'cursor' | 'devin' | 'claude' | 'copilot' | 'codex' | 'gemini' | 'none';
export type WorkspaceFootprint = 'minimal' | 'standard' | 'full';
export type FrameworkType = 'react' | 'vue' | 'svelte' | 'next' | 'nuxt' | 'remotion' | 'expo' | 'bun' | 'node' | 'cli' | 'library' | 'animation' | 'games' | 'none';
//# sourceMappingURL=index.d.ts.map