import { type PathCtx } from '../config/paths.js'; /** * The user's DEFAULT claude config file (used when CLAUDE_CONFIG_DIR is unset). * This is the "already onboarded" reference: it has hasCompletedOnboarding, the * theme, trusted folders, etc. We inherit those so a managed session skips the * first-run prompts instead of re-onboarding. */ export declare function defaultClaudeJsonPath(c?: PathCtx): string; export declare function readReferenceConfig(c?: PathCtx): Record; /** Extract just the onboarding/preference flags from a reference config. */ export declare function onboardingFlags(reference: Record): Record;