import type { HttpClient, QueryParamValue } from "./http.js"; import type { JsonObject } from "./types.js"; export type OperationCall = (body?: JsonObject, query?: Record) => Promise; export type ServiceCall = (operation: string, body?: JsonObject, query?: Record) => Promise; export type NamespaceService = ServiceCall & Record; export declare function createNamespaceService(http: HttpClient, namespace: string): NamespaceService; //# sourceMappingURL=service.d.ts.map