import { type AllureStore, type Plugin, type PluginContext, type PluginSummary } from "@allurereport/plugin-api";
import type { DashboardPluginOptions } from "./model.js";
export declare class DashboardPlugin implements Plugin {
    #private;
    readonly options: DashboardPluginOptions;
    constructor(options?: DashboardPluginOptions);
    start: (context: PluginContext) => Promise<void>;
    update: (context: PluginContext, store: AllureStore) => Promise<void>;
    done: (context: PluginContext, store: AllureStore) => Promise<void>;
    info(context: PluginContext, store: AllureStore): Promise<PluginSummary>;
}
