import { type ExtensionContext, type Theme } from "@earendil-works/pi-coding-agent"; import { Container, SettingsList, type SettingItem } from "@earendil-works/pi-tui"; import { buildClaudeModelSource, type ModelSource } from "./model-picker.js"; import { type FabricConfig } from "../config.js"; import type { CapturedToolCatalog } from "../capture/catalog.js"; import type { FabricState } from "../fabric-state.js"; export declare const executorMemoryLimitOptions: (maximumBytes?: number) => number[]; export declare const parseBudgetValue: (value: string) => number; export declare const parseFormattedNumericValue: (value: string) => number; export declare class FabricSettingsComponent extends Container { readonly settingsList: SettingsList; constructor(theme: Theme, items: SettingItem[], onChange: (id: string, newValue: string) => void, onCancel: () => void); handleInput(data: string): void; } export declare const populateClaudeModelSource: (source: ModelSource, load: () => Promise[0]>) => Promise; export declare const buildFabricSettingsItems: (theme: Theme, config: FabricConfig, apply: (id: string, value: unknown) => void, options: { keepVisibleCandidates: readonly string[]; modelSource: ModelSource; claudeModelSource?: ModelSource; }) => SettingItem[]; export interface FabricSettingsDeps { state: FabricState; applyFabricMode: () => void; capturedTools: CapturedToolCatalog; } export declare function openFabricSettings(context: ExtensionContext, deps: FabricSettingsDeps): Promise; //# sourceMappingURL=settings.d.ts.map