/** * GitHub Copilot CLI ConfigReader. * * Reads and writes Copilot CLI configuration from config.json. * * Note: Copilot CLI has LIMITED permission support: * - Uses runtime approval prompts, not pre-configured allow/deny lists * - Does NOT support tool permissions in the axconfig sense */ import type { ConfigReader } from "../types.js"; /** Copilot CLI ConfigReader */ declare const copilotConfigReader: ConfigReader; export { copilotConfigReader };