import { TestOptions } from '@verbalstream/verbaltest-playwright-core'; /** * Decorator for marking a method as a test * * @example * ``` * @suite() * class MyTestSuite { * @test() * async myTest() { * // ... * } * } * ``` * * @param options Test options * @returns Method decorator */ export declare function test(options?: TestOptions): (target: any, propertyKey?: string | symbol, descriptor?: PropertyDescriptor) => any; //# sourceMappingURL=test.decorator.d.ts.map