import type { ReactNode } from "react"; export interface TranslationProviderProps { /** The content to wrap with the translation provider. */ children: ReactNode; /** The language code to use (e.g. "en", "es", "fr"). Defaults to "en". */ language?: string; }