/** Represents the structure of a content locale object */ interface ContentLocale { /** Language code (ISO 639-1) */ code: string; /** Display name of the language */ name: string; /** Corresponding JSON filename in the locales directory */ file: string; } /** List of supported content locales */ export declare const contentLocales: ContentLocale[]; export {};