import type { Theme } from "@earendil-works/pi-coding-agent"; import type { FabricConfig } from "../config.js"; import type { ModelSource } from "./model-picker.js"; interface SettingsSectionOptions { keepVisibleCandidates: readonly string[]; modelSource: ModelSource; claudeModelSource?: ModelSource; activeModelKey?: string; } export interface SettingsSectionContext { theme: Theme; config: FabricConfig; apply: (id: string, value: unknown) => void; persist: (id: string, value: string) => void; options: Pick; } export {}; //# sourceMappingURL=settings-section-context.d.ts.map