export type AdminClientConfig = { readonly baseUrl: string; readonly apiKey: string; }; export type AdminClient = { readonly request: (method: string, path: string, body?: unknown) => Promise; }; export declare const createAdminClient: (config: { baseUrl?: string; apiKey: string; }) => AdminClient; export declare class AdminClientError extends Error { readonly status: number; readonly body: unknown; constructor(message: string, status: number, body: unknown); } //# sourceMappingURL=client.d.ts.map