import { type WellnessLanguage } from "./wellness-profile.js"; export type OnboardingQuestion = { id: string; prompt: string; category: "profile" | "goals" | "devices" | "training" | "nutrition" | "exercise" | "preferences" | "safety"; required: boolean; }; export type OnboardingResult = { profileName: string; hermesHome: string; onboardingPath: string; wellnessProfilePath: string; questions: OnboardingQuestion[]; written: boolean; }; export declare const ONBOARDING_QUESTIONS: OnboardingQuestion[]; export declare function createOnboardingFile(options?: { profileName?: string; hermesHome?: string; packageRoot?: string; write?: boolean; language?: WellnessLanguage; }): Promise; export declare function formatOnboardingQuestions(questions?: OnboardingQuestion[], options?: { language?: WellnessLanguage; }): string;