import { type TestStep } from '@playwright/test/reporter';
/**
 * Get id and name from test hierarchy
 *
 * @param testStep step from test suite
 */
export declare function buildTestStepIdentifier(testStep: TestStep): {
    id: string;
    name: string;
};
