type Locale = 'fr' | 'en' | 'it' | 'es' | 'de'; declare const availableLocales: Locale[]; type Section = { label: string; links: Array<{ label: string; url: string; }>; }; declare const getSections: (locale: Locale) => Array
; export { type Locale, availableLocales, getSections };