import type { HostComponent, ViewProps } from 'react-native'; import codegenNativeComponent from 'react-native/Libraries/Utilities/codegenNativeComponent'; import { PaymentMethodMessagingElementAppearance, PaymentMethodMessagingElementConfiguration, } from '../types/components/PaymentMethodMessagingElementComponent'; import { UnsafeMixed } from './utils'; export interface NativeProps extends ViewProps { appearance?: UnsafeMixed; configuration: UnsafeMixed; } type ComponentType = HostComponent; export default codegenNativeComponent( 'PaymentMethodMessagingElementView' ) as ComponentType;