/** Extract existing file paths from surface text, preserving occurrence order. */ export declare function extractFilePaths(texts: readonly string[], cwd: string): string[]; /** Check whether a local file fits the accessory review surface's limits. */ export declare function checkReviewableFile(abs: string): { ok: true; } | { ok: false; reason: string; };