import type { CommandFn, CommandUsage } from '../index.ts'; import { InstallReporter } from './install/reporter.ts'; import type { InstallResult } from './install.ts'; export declare const usage: CommandUsage; export declare const views: { readonly json: (i: InstallResult) => { graph: import("@vltpkg/graph").LockfileData; buildQueue?: import("@vltpkg/dep-id").DepID[] | undefined; message?: string | undefined; }; readonly human: typeof InstallReporter; }; export declare const command: CommandFn;