import type { CategoryDefinition } from "@allurereport/core-api"; import type { AllureStore } from "@allurereport/plugin-api"; import type { TestOpsClient } from "../client.js"; import type { TestOpsPluginTestResult, UploadCategory } from "../model.js"; export declare const categoryDisplayName: (cat: UploadCategory) => string; export declare const enrichWithCategories: (store: AllureStore, trs: TestOpsPluginTestResult[], contextCategories: CategoryDefinition[]) => Promise; export declare const syncLaunchCategories: (client: TestOpsClient, trs: TestOpsPluginTestResult[], contextCategories: CategoryDefinition[]) => Promise;