import type { ConcurrencyLimitRule, ThrottleLimitRule } from './types';
export declare function setHttpRateLimits(concurrencyRules?: ConcurrencyLimitRule[], throttleRules?: ThrottleLimitRule[]): void;
export declare function getConcurrentRequestsLimit(url: string): number | null;
export declare function getThrottleIntervalMs(url: string): number | null;
