import { LocaleTranslation } from '../FilterBarTypes'; type Props = { contents: LocaleTranslation; locale: string; fallbackLocale?: string; }; export declare const getLocalizedContent: ({ contents, locale, fallbackLocale, }: Props) => string | undefined; export {};