import { type DoctorReport } from "./doctor.js"; export type RunDelxWellnessE2EOptions = { profileName?: string; hermesHome?: string; packageRoot?: string; hermesBinary?: string; testConnectors?: string[]; prompt?: string; promptFile?: string; timeoutMs?: number; }; export type DelxWellnessE2EReport = { profileName: string; hermesHome: string; ready: boolean; doctor: DoctorReport; prompt: string; response: string; error?: string; }; export declare function runDelxWellnessE2E(options?: RunDelxWellnessE2EOptions): Promise; export declare function buildDelxWellnessE2EPrompt(): string;