import type { Contract } from "../contract/contract.ts"; import type { ApiClientFor, ApiClientOptions } from "./types.ts"; /** * Creates a typed fetch client whose shape mirrors a contract. * * @see {@link https://rest-rpc.dev/docs/client/fetch-client} */ export declare function initClient = Record>(contract: TContract, options: ApiClientOptions): ApiClientFor;