import { Compilation } from '@rspack/core';
import { type PluginInterface } from '../../browsers-types';
export declare class RemoteFirefox {
    private readonly options;
    private client;
    constructor(configOptions: PluginInterface);
    private connectClient;
    installAddons(compilation: Compilation): Promise<void>;
    inspectSource(compilation: Compilation, opts: {
        startingUrl?: string;
        source?: string | boolean;
    }): Promise<void>;
}
