declare const commonTranslationKeys: string[]; type CommonTranslations = { [K in (typeof commonTranslationKeys)[number]]: string; }; type PageNotFoundTranslations = { title: string; message: string; backToHome: string; }; declare const dbConnectionsKeys: string[]; type dbConnections = { [K in (typeof dbConnectionsKeys)[number]]: string; }; type I18nTranslations = { common: CommonTranslations; pageNotFound: PageNotFoundTranslations; dbConnections: dbConnections; }; declare const keys: { common: string[]; pageNotFound: string[]; dbConnections: string[]; }; declare const defaults: I18nTranslations; export { type I18nTranslations, defaults, keys };