import { type AllureStore, type Plugin, type PluginConstructorContext, type PluginContext } from "@allurereport/plugin-api"; import type { TestOpsPluginOptions } from "./model.js"; export declare class TestOpsPlugin implements Plugin { #private; readonly options: TestOpsPluginOptions; constructor(options: TestOpsPluginOptions, context?: PluginConstructorContext); get isOverridenByEnv(): boolean; get isManuallyEnabled(): boolean; get enabled(): boolean; start(context: PluginContext, store: AllureStore): Promise; update(context: PluginContext, store: AllureStore): Promise; done(context: PluginContext, store: AllureStore): Promise; info(context: PluginContext, store: AllureStore): Promise; }