import { ProxyConfig, StorageAdapter } from '../types/index.js'; export declare class ProxyManager { private proxies; private storage; constructor(storage: StorageAdapter); private decompressResponse; startProxy(config: ProxyConfig): Promise; stopProxy(id: string): Promise; updateProxy(id: string, update: Partial): Promise; deleteProxy(id: string): Promise; getActiveProxies(): ProxyConfig[]; loadProxiesFromStorage(): Promise; stopAll(): Promise; private parseQueryString; } //# sourceMappingURL=manager.d.ts.map