/**
* Minimal transport interface used by generated service clients.
* Implementations perform unary RPC: send request bytes and return response bytes.
*/
export interface RpcTransport {
unary(path: string, req: Uint8Array, md?: Record<string, string>): Promise<Uint8Array>
}