import type { MCPResource } from '../transport/types.js'; import type { ResourceQuestion } from './types.js'; export interface ResourceTestOptions { /** Maximum tests to generate */ maxTests?: number; } /** * Generate deterministic resource tests. * Since resource reads are URI-based with no args, tests focus on consistency. */ export declare function generateResourceTests(resource: MCPResource, options?: ResourceTestOptions): ResourceQuestion[]; //# sourceMappingURL=resource-test-generator.d.ts.map