/** * HTTP Request Helper * AUTO-GENERATED - Do not edit manually */ import { AxiosResponse } from 'axios'; export type ApiRequestOptions = { method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE'; url: string; path?: Record; query?: Record; body?: any; headers?: Record; }; export declare class ApiError extends Error { readonly url: string; readonly status: number; readonly statusText: string; readonly body: any; constructor(response: AxiosResponse, message: string); } export declare function request(options: ApiRequestOptions): Promise; //# sourceMappingURL=request.d.ts.map