/** * StatusCodeHandler * * Handles status code assertions. * Supports exact match, numeric values, and range patterns (2xx, 4xx, etc.) */ import { HttpResponse } from '../../types'; import { IAssertionHandler, AssertionResult } from '../IAssertionHandler'; export declare class StatusCodeHandler implements IAssertionHandler { readonly type = "status"; canHandle(key: string): boolean; assert(key: string, value: string, response: HttpResponse): AssertionResult; }