export type AdminClientConfig = { readonly baseUrl: string; readonly apiKey: string; readonly accountId?: string; }; export type AdminClient = { readonly request: (method: string, path: string, body?: unknown, overrides?: RequestOverrides) => Promise; }; export type RequestOverrides = { readonly accountId?: string; }; export declare const createAdminClient: (config: { baseUrl?: string; apiKey: string; accountId?: 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