import { SetResponsePersistentParamsOptions, SetResponseTrackOptions } from "../../types"; interface IProxyController { setResponseTrackCallback: (callbackParams: SetResponseTrackOptions) => void; deleteResponseTrackCallback: (callbackName: string) => void; } export declare class ProxyController implements IProxyController { setResponseTrackCallback(callbackParams: SetResponseTrackOptions): void; deleteResponseTrackCallback(callbackName: string): void; setPersistentOptions(callbackParams: SetResponsePersistentParamsOptions): void; deletePersistentOptions(callbackName: string): void; } export {};