declare const sidebarTranslationKeys: string[]; type SidebarTranslations = { [K in (typeof sidebarTranslationKeys)[number]]: string; }; declare const defaultSidebarTranslations: SidebarTranslations; declare const navbarTranslationKeys: string[]; type NavbarTranslations = { [K in (typeof navbarTranslationKeys)[number]]: string; }; declare const defaultNavbarTranslations: NavbarTranslations; type I18nTranslations = { sidebar: SidebarTranslations; navbar: NavbarTranslations; }; declare const keys: { sidebar: string[]; navbar: string[]; }; declare const defaults: I18nTranslations; export { type I18nTranslations, type NavbarTranslations, type SidebarTranslations, defaultNavbarTranslations, defaultSidebarTranslations, defaults, keys, navbarTranslationKeys };