/**
 * Locale exports - Tree-shakeable language imports
 *
 * Import only the languages you need:
 *
 * @example
 * ```ts
 * import { defaultTranslations } from 'tanstack-shadcn-table/i18n/en';
 * import { turkishTranslations } from 'tanstack-shadcn-table/i18n/tr';
 * ```
 */
export { defaultTranslations } from "./en";
export { turkishTranslations } from "./tr";
export { spanishTranslations } from "./es";
export { frenchTranslations } from "./fr";
export { germanTranslations } from "./de";
