import * as React from 'react'; import { MessageDescriptor, MessageValues } from './intl-context.cjs'; type TranslationProps = MessageDescriptor & { trailingSpace?: boolean; values?: MessageValues; }; /** * Translation component that gracefully degrades when no I18nProvider is present. * * - With I18nProvider: Uses react-intl for full i18n support (react-intl will be bundled) * - Without I18nProvider: Renders the defaultMessage with simple value interpolation (no react-intl bundled) */ declare const Translation: React.FC; export { Translation };