import type IntlConfig from './IntlConfig.js'; /** * Enhances the incoming props with defaults. */ export default function initializeConfig({ formats, getMessageFallback, messages, onError, ...rest }: Props): Omit & { formats: NonNullable | undefined; messages: NonNullable | undefined; onError: (error: import("./IntlError.js").default) => void; getMessageFallback: (info: { error: import("./IntlError.js").default; key: string; namespace?: string; }) => string; };