import { type AllureStore, type Plugin, type PluginContext, type PluginSummary } from "@allurereport/plugin-api";
import type { ClassicPluginOptions } from "./model.js";
export declare class ClassicPlugin implements Plugin {
    #private;
    readonly options: ClassicPluginOptions;
    constructor(options?: ClassicPluginOptions);
    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>;
}
