import type { AuthService } from "../auth/auth-service.js"; export type Json = null | boolean | number | string | Json[] | { [key: string]: Json; }; export declare class KaneoClient { readonly baseUrl: string; private readonly auth; constructor(options: { baseUrl: string; auth: AuthService; }); private authorizedFetch; json(path: string, init?: RequestInit): Promise; }