import type { TestCase } from 'vitest/node';
import { Message, type Parameters } from './message';
export declare class TestMetadataMessage extends Message {
    private readonly testCase;
    constructor(testCase: TestCase);
    protected generate(type: string, parameters?: Parameters): string;
    sourceFile(): string;
    vitestFullName(): string;
}
