import { u as Scope } from "../../../types-KR94Pl4P.js"; import "../../../interfaces-CpcX0CPB.js"; import { t as BaseAdapter } from "../../../base-CJfC5KqX.js"; //#region src/services/settings/adapters/gemini.d.ts /** * Resolves the following config paths: * - user: ~/.gemini/settings.json * - project: /.gemini/settings.json * - system: platform-specific path */ declare class GeminiAdapter extends BaseAdapter { #private; readonly toolId: "gemini"; /** * Resolve the configuration path for each scope */ resolvePath(scope: Scope): string; /** * Validate supported scopes */ validateScope(scope: Scope): boolean; } //#endregion export { GeminiAdapter };