/** * Entity Translation Hooks * * React hooks for accessing entity-specific translations */ /** * Hook to get translations for a specific entity */ export declare function useEntityTranslations(entityName: string): { translations: Record; t: (key: string, fallback?: string) => string; hasTranslation: (key: string) => boolean; isLoading: boolean; error: string; reload: () => Promise; }; /** * Hook to get all entity translations for current locale */ export declare function useAllEntityTranslations(): { translations: Record; isLoading: boolean; error: string; reload: () => Promise; }; //# sourceMappingURL=useEntityTranslations.d.ts.map