interface RequestOptions { method: 'GET' | 'POST' | 'DELETE'; token: string; timeout: number; body?: unknown; headers?: Record; } /** * Shared HTTP request helper for USPS v3 API calls. * Handles auth headers, JSON serialization, error classification, and rate limits. */ export declare function uspsRequest(url: string, options: RequestOptions): Promise; export {}; //# sourceMappingURL=request.d.ts.map