import { Stats } from './stats'; import { PlottingOptions } from './interfaces'; export declare class Plotting { private readonly stats; private readonly options?; private readonly openBrowser; private readonly filename; constructor(stats: Stats, options?: PlottingOptions | undefined); plot(): void; private createHTML; }