import type { CliAdapter } from './types.js'; /** * RiffCliAdapter — minimal pass-through adapter for riff-backed sessions. * * Since riff runs remotely (not a local CLI binary), this adapter provides: * - An empty resolvedBin (no binary to spawn) * - Empty buildArgs (riff backend ignores bin/args) * - Direct writeInput (no PTY throttling/bracketed paste needed) * * The real work happens in RiffBackend, which translates write() calls into * riff HTTP API calls. */ export declare function createRiffAdapter(_pathOverride?: string): CliAdapter; //# sourceMappingURL=riff.d.ts.map