import type { MCPPrompt } from '../transport/types.js'; import type { PromptQuestion } from './types.js'; export interface PromptTestOptions { /** Maximum tests to generate */ maxTests?: number; } /** * Generate deterministic prompt tests based on prompt arguments. * Focuses on valid inputs to avoid false negatives. */ export declare function generatePromptTests(prompt: MCPPrompt, options?: PromptTestOptions): PromptQuestion[]; //# sourceMappingURL=prompt-test-generator.d.ts.map