/** * Decorator for wrapping a method with a test step * * @example * ``` * @step('Custom step name') * async myMethod() { * // ... * } * ``` * * @param name Optional custom step name * @returns Method decorator */ export declare function step(name?: string): (target: any, propertyKey: string | symbol, descriptor?: PropertyDescriptor) => any; //# sourceMappingURL=step.decorator.d.ts.map