import Toxiproxy from "./Toxiproxy"; import Proxy from "./Proxy"; import Toxic from "./Toxic"; export interface ICreateProxyHelper { proxy: Proxy; toxiproxy: Toxiproxy; } export declare const toxiproxyUrl = "http://localhost:8474"; export declare const createProxy: (name: string) => Promise; export declare const createToxic: (proxy: Proxy, type: string, attributes: T) => Promise>; export declare function removeAllProxies(): Promise;