UNPKG

@pagamio/frontend-commons-lib

Version:

Pagamio library for Frontend reusable components like the form engine and table container

8 lines (7 loc) 265 B
import type { LibTranslationKey } from '../types'; /** * Hook for accessing library-specific translations */ export declare const useLibTranslations: () => { tLib: (key: LibTranslationKey, defaultValue?: string, variables?: Record<string, any>) => string; };