/** * Persist TUI-collected settings into ~/.wigolo/config.json. * Delegates to the shared accessor so there is a single write path * across TUI, CLI, and any future SP that needs to persist settings. */ export declare function saveInitConfig(dataDir: string, config: Record): void; /** * Read persisted settings map from ~/.wigolo/config.json. * Returns the flat settings object (not the full versioned envelope). */ export declare function readInitConfig(dataDir: string): Record; //# sourceMappingURL=config-writer.d.ts.map