import { DetectPlugin } from "./DetectPlugin";
export interface HttpOptions {
    name?: string;
    baitUrl: string;
    baitMode: "ajax" | "script";
}
export declare const HttpAjaxOptions: HttpOptions;
export declare const HttpScriptOptions: HttpOptions;
export declare function Http(options: HttpOptions): DetectPlugin;
export declare const ajax: DetectPlugin;
export declare const script: DetectPlugin;
