declare const dashboardTranslationKeys: readonly ["title", "welcome", "editMode"]; type DashboardTranslations = { [key in (typeof dashboardTranslationKeys)[number]]: string; }; type I18nTranslations = { dashboard: DashboardTranslations; }; declare const keys: { dashboard: readonly ["title", "welcome", "editMode"]; }; declare const defaults: I18nTranslations; export { type I18nTranslations, defaults, keys };