import { NetworkProtocol } from './types';
interface NetworkRuleEngineOptions {
    allowLocalhost: boolean;
    protocols: NetworkProtocol[];
}
export declare class NetworkRuleEngine {
    private readonly ruleList;
    constructor(options: NetworkRuleEngineOptions);
    test(urlString: string): void;
}
export {};
