/** * Decorator for expecting a specific status code from an API response * * @example * ``` * @suite() * class ApiTests { * @test() * @ApiEndpoint('GET', '/api/users') * @ExpectStatus(200) * async getUsersTest({ request }) { * // Test implementation * } * } * ``` * * @param status Expected status code * @returns Method decorator */ export declare function ExpectStatus(status: number): (target: any, propertyKey?: string | symbol, descriptor?: PropertyDescriptor) => any; //# sourceMappingURL=expect-status.decorator.d.ts.map