import { type SupportedBrowsers, type TargetMetric, type FirefoxMetricObserver } from '../../types/index.js';
import { type BrowserClient } from '../client.js';
export declare class FirefoxDevelopmentTools implements BrowserClient {
    private readonly options;
    /**
     * @inheritdoc
     */
    constructor(options: Record<string, any>);
    /**
     * @inheritdoc
     */
    connect(): Promise<void>;
    /**
     * @inheritdoc
     */
    getMetric(metric: FirefoxMetricObserver): Promise<TargetMetric[]>;
    /**
     * @inheritdoc
     */
    destroy(): null;
    /**
     * @inheritdoc
     */
    getBrowserName(): SupportedBrowsers;
}
