export interface AgentInfo { name: string; filePath: string; isExported: boolean; lineNumber: number; } export declare const AGENT_PATTERN_STRINGS: string[]; export declare const ESM_EXPORT_PATTERN: RegExp; export declare const CJS_EXPORT_PATTERN: RegExp; /** * Scan content string for LangGraph agent definitions * Exported for testing purposes */ export declare function scanContentForAgents(content: string, filePath?: string): AgentInfo[]; /** * Generate the langgraph.json configuration */ export declare function generateConfig(targetPath?: string): Promise;