import type { BuildResult } from '@vltpkg/graph'; import type { CommandFn, CommandUsage } from '../index.ts'; export declare const views: { readonly human: (result: BuildResult) => string; readonly json: (result: BuildResult) => { success: { id: import("@vltpkg/dep-id").DepID; name: string; version: string | undefined; }[]; failure: { id: import("@vltpkg/dep-id").DepID; name: string; version: string | undefined; }[]; message: string; }; }; export declare const usage: CommandUsage; /** * Build command implementation. Runs any required "postinstall" * lifecycle scripts and binary linking. */ export declare const command: CommandFn;