#!/usr/bin/env node /** * Extract file path from common JSON field patterns used by AI agents. * Supports multiple formats for agent-agnostic integration. */ declare function extractFilePath(json: unknown): string | null; export { extractFilePath };