import { CallGraphResult } from './CallGraphTypes.js';
import { SymbolReferences } from './symbol-refs.js';
export interface TestPromptContext {
    callGraph: CallGraphResult;
    symbolRefs: SymbolReferences;
    framework: string;
}
export interface SuggestTestOptions {
    to: string;
    testFramework?: string;
    output?: string;
    dir?: string;
    include?: string;
    exclude?: string;
    project?: string;
}
export interface SuggestTestResult {
    success: boolean;
    message: string;
}
//# sourceMappingURL=suggest-test.d.ts.map