export interface ApiRequestOptions { method: string; path: string; apiKey?: string; body?: string; baseUrl?: string; } export interface ApiResponse { status: number; headers: Headers; body: unknown; rawBody: string; } export declare function apiRequest(options: ApiRequestOptions): Promise;