import { block } from "./block/index"; import { create } from "./create/index"; import { get } from "./get/index"; import { query } from "./query/index"; import { remove } from "./remove/index"; import { update } from "./update/index"; type ApiDeclaration = { create: typeof create; remove: typeof remove; update: typeof update; query: typeof query; block: typeof block; get: typeof get; }; declare const clientsApiDeclaration: ApiDeclaration; export { clientsApiDeclaration };