import { Localized } from '../utils/i18n'; export declare type Labels = { [key: string]: string | undefined | Labels; }; export interface LocalizedComponent { customLocale?: Localized; locale?: L; } export declare function solveLocale(locale: Localized, lang?: string): L; export declare function mergeLabels(labels?: L, defaultLabels?: L): L | undefined;