import { CompiledMessage } from '../types/types'; import I18n from '../core/I18n'; export declare function isVariantI18n(i18n?: I18n): void; declare function generateKey(locales?: string | string[], options?: T, valueKey?: string | undefined): string; declare function compile(message: string): CompiledMessage; declare const utils: { isVariantI18n: typeof isVariantI18n; generateKey: typeof generateKey; compile: typeof compile; }; export declare function createI18nProps(source: any): { intl: any; locale: any; messages: any; defaultLocale: any; timeZone: any; onError: any; formatMessage: any; formatDate: any; formatNumber: any; $t: any; }; export default utils;