/** * Shared helper for resolving CLI file arguments. * * When a user passes a Markdown document path (e.g. `docs/api.md`) instead of * a sidecar path, we auto-discover the corresponding sidecar. This avoids * the confusing "Failed to parse YAML" error on raw Markdown files. */ /** * Resolve a list of CLI file arguments to sidecar paths. * * - If `files` is empty, discover all sidecars from the workspace root. * - If a file already looks like a sidecar (`.review.yaml`/`.review.json`), * resolve it to an absolute path. * - If a file ends in `.md` (or any non-sidecar extension), treat it as a * document path and discover its sidecar via ยง3.3. */ export declare function resolveSidecarPaths(files: string[], cwd: string): Promise; //# sourceMappingURL=resolve-files.d.ts.map