/** * Preflight check for forgen initialization state. * * Detects "hooks wired but no profile" — a user who ran `forgen install` * but never completed onboarding via `forgen`. Emits a one-time warning * per session so the user knows personalization is disabled. */ export declare function checkForgenInitialized(): { initialized: boolean; message?: string; }; /** Returns true if a preflight warning has already been emitted this session */ export declare function hasPreflightWarned(sessionId: string): boolean; /** Mark that a preflight warning has been emitted for this session */ export declare function markPreflightWarned(sessionId: string): void;