import type { MCPToolCallResult } from '../transport/types.js'; import type { ResponseAssertionResult, ResponseSchema } from './types.js'; export interface ResponseAssertionOptions { expectedText?: string; } /** * Validate a response against an inferred schema and basic semantic assertions. */ export declare function validateResponseAssertions(response: MCPToolCallResult, expectedSchema?: ResponseSchema, options?: ResponseAssertionOptions): ResponseAssertionResult[]; //# sourceMappingURL=response-validator.d.ts.map