import { RefineNameFn } from "./index.js"; /** allows refining the current name of a test step */ export declare class NameRefiner { private name; constructor(name: string); /** returns the refined name */ finalName(): string; /** returns a function that can be called to refine the name */ refineFn(): RefineNameFn; /** updates the currently stored name to the given name */ private refineName; } //# sourceMappingURL=name-refiner.d.ts.map