import type { ReasoningZipSettings } from "./types.js"; export declare const DEFAULT_SETTINGS: ReasoningZipSettings; export type SettingsScope = "global" | "project"; export interface EnabledSettingInspection { value: boolean; source: SettingsScope | "built-in"; path?: string; } export interface EnabledSettingWriteResult { scope: SettingsScope; path: string; value: boolean; } export declare function settingsPath(scope: SettingsScope, cwd?: string): string; export declare function inspectEnabledSetting(cwd?: string, scope?: SettingsScope): Promise; export declare function writeEnabledSetting(cwd: string, value: boolean, requestedScope?: SettingsScope): Promise; export declare function resolveReasoningZipSettings(input: unknown): ReasoningZipSettings;