export declare const DEFAULT_TIMEOUTS: { readonly connect: 5000; readonly request: 10000; readonly dns: 3000; }; export declare const DEFAULT_RETRY_CONFIG: { maxAttempts: number; initialDelay: number; maxDelay: number; backoff: "exponential"; }; export declare const DEFAULT_REDIRECT_CONFIG: { readonly followRedirects: true; readonly maxRedirects: 5; }; export declare const HTTP_STATUS: { readonly OK: 200; readonly BAD_REQUEST: 400; readonly FORBIDDEN: 403; readonly NOT_FOUND: 404; readonly TIMEOUT: 408; readonly TOO_MANY_REQUESTS: 429; readonly INTERNAL_SERVER_ERROR: 500; readonly SERVICE_UNAVAILABLE: 503; }; //# sourceMappingURL=http.constants.d.ts.map