import { type Argv } from 'yargs'; import { type RunParams } from './dependenciesFunctions'; export declare const command = "dependencies-manifest"; export declare const describe = "Display or update the dependencies manifest."; export declare const aliases: string[]; export declare const handler: (argv: RunParams) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ fullReport: { default: boolean; description: string; type: "boolean"; }; reports: { default: boolean; description: string; type: "boolean"; }; write: { default: boolean; description: string; type: "boolean"; }; pdf: { default: boolean; description: string; type: "boolean"; }; }>>;