import { type Argv } from 'yargs'; import { type HealthOptions } from './types'; export declare const command = "health"; export declare const describe = "Will execute the health scripts suite."; export declare const aliases: string[]; /** * Execute the health command * @param argv */ export declare const handler: (argv: HealthOptions) => Promise; /** * Options for the command * @param build * @returns */ export declare const builder: (build: Argv) => Argv & import("yargs").InferredOptionTypes<{ circular: { alias: string; describe: string; type: "boolean"; }; "circular-async": { alias: string; describe: string; type: "boolean"; }; 'circular-types': { alias: string; describe: string; type: "boolean"; }; exclude: { alias: string; describe: string; type: "array"; }; format: { alias: string; choices: string[]; describe: string; }; include: { alias: string; describe: string; type: "array"; }; missing: { alias: string; describe: string; type: "boolean"; }; output: { alias: string; describe: string; type: "string"; }; unused: { alias: string; describe: string; type: "boolean"; }; "unused-dev": { alias: string; describe: string; type: "boolean"; }; "unused-export": { alias: string; describe: string; type: "boolean"; }; }>>;