/** * 메모리 content에서 .md 파일 참조를 감지합니다. */ /** * 메모리 content에서 .md 파일 참조 경로를 추출합니다. * * 감지 패턴: * 1. Markdown 링크: [텍스트](path.md) — ./ prefix 유무 모두 * 2. 직접 경로: Source: MEMORY.md, 참조: reference_xxx.md * 3. 괄호 안 경로: (./path.md) 또는 (path.md) * 4. 절대 경로: /Users/.../file.md * 5. 상대 경로: docs/plans/FILE.md, ../api/README.md * 6. JSON filePath: {"filePath":"/path/to/file.md"} * * 파일 존재 여부를 확인하여 실제 존재하는 경로만 반환합니다. */ export declare function detectMdReferences(content: string, projectPath: string): string[]; //# sourceMappingURL=file-reference.d.ts.map