import { type InstallScope } from '../../platform/install/detect.js'; import { type ProjectRegistryTarget } from '../../platform/install/project-registry.js'; import type { CometWorkflow } from '../../domains/comet-entry/types.js'; import { type Language } from './i18n.js'; interface UninstallOptions { json?: boolean; scope?: InstallScope; force?: boolean; allProjects?: boolean; currentProject?: boolean; recoverProjectCleanup?: boolean; recoveryTargets?: ProjectRegistryTarget[]; targetPlatforms?: string[]; workflows?: CometWorkflow[]; companionSkills?: Array<'openspec' | 'superpowers'>; language?: Language; } export declare function uninstallCommand(targetPath: string, options?: UninstallOptions): Promise; export {}; //# sourceMappingURL=uninstall.d.ts.map