import type { Content } from '../jsx/content'; export type FetchTranslationsOptions = { timeout?: number; }; export type RetrievedTranslation = { locale: string; translation: Content; }; export type RetrievedTranslations = RetrievedTranslation[]; export type FetchTranslationsResult = { translations: RetrievedTranslations; };