import type { PersonaModelsMap, PipelineConfig } from "./config-layer.js"; export type ConfigLayer = "global" | "project"; export interface RoutingConfigBuffer { "persona-models"?: PersonaModelsMap; pipelines?: Record; } export interface WriteOptions { layer: ConfigLayer; cwd: string; buffer: RoutingConfigBuffer; } export declare function resolveTargetPath(opts: { layer: ConfigLayer; cwd: string; }): string; export declare function writeRoutingConfig(opts: WriteOptions): string;