import { FeatureBehavior, TestScenario } from './types';
/**
 * Parse a feature behavior file into a structured object
 *
 * @param filePath - Path to the feature behavior file
 * @returns Parsed feature behavior or null if parsing failed
 */
export declare function parseFeatureBehaviorFile(filePath: string): Promise<FeatureBehavior | null>;
/**
 * Generate a prompt for the AI agent to execute a test scenario
 *
 * @param scenario - The test scenario to execute
 * @returns A prompt for the AI agent
 */
export declare function generateScenarioPrompt(scenario: TestScenario): string;
