export interface HermesSetupOptions { homeDir?: string | undefined; localDir?: string | undefined; profile?: string | undefined; } export interface HermesSetupResult { ok: true; client: "hermes"; client_config_path: string; hermes_skill_path: string; nourish_wrapper_path: string; hermes_config_backup_path?: string; nourish_local_dir: string; personal_telegram_ready: true; warnings: string[]; next_steps: string[]; } export interface HermesDoctorCheck { config_exists: boolean; nourish_server_configured: boolean; package_pinned: boolean; skill_installed: boolean; nourish_local_dir?: string; nourish_local_dir_exists: boolean; recommendations: string[]; } export declare function setupHermes(options?: HermesSetupOptions): HermesSetupResult; export declare function inspectHermes(options?: HermesSetupOptions): HermesDoctorCheck; export declare function hermesSkillMarkdown(localDir?: string): string;