import type { MemoryTransport } from './client.js'; export interface MemorySpineRestTransportOptions { readonly baseUrl: string; readonly authToken: string | null; readonly fetchImpl?: typeof fetch; } /** * Build the `MemorySpineClient` wire transport: a REST adapter over the * adopted daemon's full `memory.records.*` route catalog (five CORE routes * plus the ten 1.2.0 EXTENDED routes). */ export declare function createMemorySpineRestTransport(options: MemorySpineRestTransportOptions): MemoryTransport; //# sourceMappingURL=rest-transport.d.ts.map