/** * GitHub Copilot CLI ConfigBuilder. * * Translates AxrunConfig into Copilot CLI's config.json format. * * 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 * - Does NOT support bash patterns * - Does NOT support path restrictions */ import type { ConfigBuilder } from "../types.js"; export { copilotConfigReader } from "./copilot-reader.js"; /** Copilot CLI ConfigBuilder */ declare const copilotConfigBuilder: ConfigBuilder; export { copilotConfigBuilder };