export declare const THINKING_LEVELS: readonly ["off", "minimal", "low", "medium", "high", "xhigh"]; export type ThinkingLevel = (typeof THINKING_LEVELS)[number]; export declare const DEFAULT_MODEL_HINT = "Leave blank to use the role/default inherited model."; export declare const MANUAL_MODEL_HINT = "Manual entries must use provider/model."; export type ModelOption = { provider: string; id: string; fullId: string; }; export declare function toModelOptions(models: Array<{ provider: string; id: string; }> | undefined): ModelOption[]; export declare function filterModelOptions(options: ModelOption[], query: string): ModelOption[]; export declare function getVisibleModelOptions(options: ModelOption[], cursor: number, viewport: number): ModelOption[]; export declare function validateManualModelInput(value: string): string | undefined; //# sourceMappingURL=subagents-edit.d.ts.map