/** * @license * Copyright 2025 Steven Roussey * SPDX-License-Identifier: Apache-2.0 */ export interface CliConfig { readonly directories: { readonly models: string; readonly workflows: string; readonly agents: string; readonly mcps: string; readonly cache: string; }; readonly browser?: { readonly backend?: "bun-webview" | "playwright"; readonly "chrome-path"?: string; readonly headless?: boolean; }; } export declare const DEFAULT_CONFIG: CliConfig; export declare const CONFIG_PATH: string; export declare function loadConfig(): Promise;