import { InstallReporter } from './install/reporter.ts'; import type { CommandFn, CommandUsage } from '../index.ts'; import type { InstallResult } from './install.ts'; export type CIResult = Omit; export declare const usage: CommandUsage; export declare const views: { readonly json: (i: CIResult) => import("@vltpkg/graph").LockfileData; readonly human: typeof InstallReporter; }; export declare const command: CommandFn;