import { BuildHermesProfileConfigOptions } from "./config-generator.js"; export type InstallOptions = Omit & { profileName?: string; hermesHome?: string; skillsDir?: string; packageRoot?: string; write?: boolean; }; export type InstallResult = { profileName: string; hermesHome: string; configPath: string; dryRun: boolean; changedFiles: string[]; renderedConfig: string; }; export declare function installDelxWellnessHermesProfile(options?: InstallOptions): Promise;