export interface ServerClientOptions { serverUrl?: string; apiKey?: string; orgId?: string; } export type QueryValue = string | number | boolean | null | undefined; export declare class ServerApiClient { protected readonly serverUrl: string; protected readonly apiKey: string | undefined; protected readonly orgId: string | undefined; constructor(options?: ServerClientOptions); protected buildUrl(path: string, query?: Record): string; protected requestJson(path: string, init?: RequestInit, query?: Record): Promise; protected requestVoid(path: string, init?: RequestInit, query?: Record): Promise; private request; } //# sourceMappingURL=server-api.d.ts.map