/** * Registry of supported AI coding assistant harnesses and their global config targets. * * Each harness maps to the absolute path where sync-rules writes global rules. * The registry is the single source of truth for valid harness names and target paths. */ export type HarnessName = "claude" | "gemini" | "opencode" | "codex" | "copilot"; interface HarnessEntry { readonly target: string; } export declare const HARNESS_REGISTRY: Record; export declare const HARNESS_NAMES: HarnessName[]; export {};