export default class Channel {
    targetURL: string;
    throughProxy: boolean;
    static filterURL(targetURL: any): any;
    constructor(targetURL: any);
    static getChannel(): Promise<Channel>;
    static setChannel(targetURL: any): Channel;
    cache(): void;
    static cache(obj: any): void;
    static restore(): {};
    static clear(): void;
}
