#!/usr/bin/env node type CheckStatus = 'pass' | 'fail'; interface DoctorCheck { name: string; status: CheckStatus; code: string; message: string; details?: Record; } interface DoctorResult { ok: boolean; version: string; checks: DoctorCheck[]; } interface CliOptions { json?: boolean; network?: string; rpcUrl?: string; out?: string; force?: boolean; } export declare function runDoctor(options?: CliOptions): Promise; export declare function scaffoldTemplate(params: { template: string; out?: string; force?: boolean; }): Promise<{ template: string; outDir: string; }>; export declare function runCli(argv?: string[]): Promise; export {};