import { Command as BaseCommand } from '@oclif/command'; export { flags } from '@oclif/command'; export interface CommandFlags { silent?: boolean; } export declare abstract class Command extends BaseCommand { static flags: { silent: import("@oclif/parser/lib/flags").IBooleanFlag; }; flags: CommandFlags & T; init(): Promise; catch(error: any): Promise; log(message?: string, ...args: any[]): void; error(input: string | Error, _options?: unknown): never; }