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;
};
