import type { RunnerTask as Task } from "vitest";
import type { TestPlanV1 } from "allure-js-commons/sdk";
export declare const getSuitePath: (task: Task) => string[];
export declare const getTestMetadata: (task: Task) => {
    specPath: string;
    name: string;
    suitePath: string[];
    fullName: string;
    labels: import("allure-js-commons").Label[];
    links: import("allure-js-commons").Link[];
};
export declare const existsInTestPlan: (task: Task, testPlan?: TestPlanV1) => boolean;
