import type { CliAdapter } from './types.js'; /** GitHub Copilot CLI adapter (`@github/copilot`). * * Copilot CLI is an Ink-based interactive agent shipped as the `copilot` * binary (npm `@github/copilot`). It manages sessions internally — botmux's * `sessionId` cannot be forced as the CLI session id, so we always start * fresh and rely on `--resume ` for resume (never `--continue`: it * resumes the globally most recent session, which can belong to a sibling * botmux session — see buildArgs). */ export declare function createCopilotAdapter(pathOverride?: string): CliAdapter; export declare const create: typeof createCopilotAdapter; //# sourceMappingURL=copilot.d.ts.map