/** * omx uninstall - Remove oh-my-codex configuration and installed artifacts */ import { type SetupScope } from "./setup.js"; export interface UninstallOptions { codexFeaturesProbe?: () => string | null; codexVersionProbe?: () => string | null; dryRun?: boolean; keepConfig?: boolean; verbose?: boolean; purge?: boolean; scope?: SetupScope; } export declare function uninstall(options?: UninstallOptions): Promise; //# sourceMappingURL=uninstall.d.ts.map