/** * Diagnostic checks for the doctor command */ import { DoctorCheck } from './types.js'; import { PaduaConfig } from '../login/types.js'; /** * Check if config file exists and is valid JSON */ export declare function checkConfigFile(): Promise; /** * Validate config schema and field formats */ export declare function checkConfigSchema(config: PaduaConfig): Promise; /** * Validate default profile exists in AWS config */ export declare function checkDefaultProfile(config: PaduaConfig): Promise; /** * Check prerequisites (AWS CLI, npm, Docker, etc.) */ export declare function checkPrerequisitesStatus(): Promise; /** * Check authentication status for all services */ export declare function checkAuthStatus(profile: string, config: PaduaConfig): Promise; /** * Check if CLI version is up to date */ export declare function checkCliVersion(): Promise; //# sourceMappingURL=checks.d.ts.map