export declare const DAILY_OPERATOR_PROMPT = "Run the Delx Wellness Daily Operator loop.\n\nUse my local Delx Wellness Hermes profile and available MCP tools. Start by checking setup and data availability. Prefer delx-living-body tools when available because they compose multiple connectors. If Living Body is unavailable, fall back to provider status, daily summaries, and Nourish.\n\nReturn:\n1. One-line daily read.\n2. Evidence bullets with provider/source and freshness.\n3. One training or recovery action for today.\n4. One nutrition or hydration action for today.\n5. Missing setup checklist, only for unavailable or stale sources.\n6. One next command or question that moves me forward.\n\nRules:\n- Do not ask me to paste OAuth tokens, refresh tokens, cookies, passwords, API keys, or raw secret files into chat.\n- Do not log food, water, goals, or saved meals unless I explicitly ask you to save.\n- Do not give medical diagnosis or prescription.\n- Be conservative for pain, chest symptoms, fainting, severe illness, injury, disordered eating signals, medication conflicts, pregnancy context, or abnormal readings.\n- Keep the answer concise and useful for terminal or Telegram."; export type DailyOperatorOptions = { profileName?: string; hermesHome?: string; packageRoot?: string; write?: boolean; }; export type DailyOperatorResult = { profileName: string; hermesHome: string; operatorPath: string; written: boolean; prompt: string; hermesCommand: string; }; export declare function createDailyOperatorFile(options?: DailyOperatorOptions): Promise; export declare function formatDailyOperatorPrompt(): string; export declare function formatDailyOperatorHermesCommand(profileName?: string): string;