/** * Translation status route — lists per-language translation coverage for * every Nitrogen-enabled document and template, for the editor's translation * dashboard. * * The status is computed and stored (in `nitrogenTranslationStatus`) by the * save handlers; this route reads the stored value and only computes on the * fly for docs that have never been saved since localization was enabled. */ import type { Endpoint } from 'payload'; export declare function createTranslationStatusEndpoints(collections: string[]): Endpoint[];