import type { Graph } from '@vltpkg/graph'; import type { CommandFn, CommandUsage } from '../index.ts'; import { InstallReporter } from './install/reporter.ts'; export type UninstallResult = { /** * The resulting graph structure at the end of an uninstall. */ graph: Graph; }; export declare const usage: CommandUsage; export declare const views: { readonly json: (i: UninstallResult) => import("@vltpkg/graph").LockfileData; readonly human: typeof InstallReporter; }; export declare const command: CommandFn;