export type ModelRole = 'manager' | 'coding' | 'help' | 'post' | 'research' | 'chat' | 'imageOpenai' | 'imageGemini' | 'screenshotVision' | 'deptStrategy' | 'deptEngineering' | 'deptGrowth' | 'deptOperations' | 'deptData' | 'deptSecurity' | 'deptRevenue'; export type ModelSelectionStore = { roles: Partial>; updatedAt: string; }; export declare function loadModelSelections(): Promise; export declare function saveModelSelection(role: ModelRole, modelId: string): Promise; export declare function applyStoredModelSelections(): Promise; export declare function roleLabels(): Array<{ role: ModelRole; label: string; envKey: string; }>; //# sourceMappingURL=model-store.d.ts.map