import type { Task } from "@vitest/runner";
declare module "vitest/browser" {
    interface BrowserCommands {
        existsInTestPlan(task: Task): Promise<boolean>;
    }
}
export declare const commands: {
    existsInTestPlan: (ctx: any, task: Task) => boolean;
};
