/** * `axm packs uninstall`. * * A preview that would remove nothing reports an empty result rather than a * no-op, because the pack graph itself is the subject and "nothing to remove" * is a fact about that graph. */ export interface UninstallPackHandlerArgs { /** Pack name, fully-qualified pack identity, or glob. */ readonly name: string; } export declare const handleUninstallPack: (args: UninstallPackHandlerArgs, flags: { readonly preview: boolean; }) => import("effect/Effect").Effect; //# sourceMappingURL=handler.d.ts.map