export interface HttpOptions { method?: 'GET' | 'POST' | 'PUT' | 'DELETE' | 'PATCH'; headers?: Record; body?: any; timeout?: number; } export interface HttpResponse { status: number; data: any; headers?: Record; } export declare function httpRequest(url: string, options?: HttpOptions): Promise; export declare function detectHttpSupport(): boolean; //# sourceMappingURL=http.d.ts.map