/** Represents a standardized HTTP response in OpenAPI format. */
export interface OpenApiResponse {
/** HTTP headers returned in the response. */
headers: Record<string, any>;
/** Body content of the response. */body: any;
/** HTTP status code of the response. */
statusCode: number;
}