import React from 'react'; import { AccessibilityProps } from 'react-native'; import { PaymentMethodMessagingElementAppearance, PaymentMethodMessagingElementState } from '../types/components/PaymentMethodMessagingElementComponent'; import { PaymentMethodMessagingElementConfiguration } from '../types/components/PaymentMethodMessagingElementComponent'; export interface Props extends AccessibilityProps { appearance?: PaymentMethodMessagingElementAppearance; configuration: PaymentMethodMessagingElementConfiguration; onStateChange?(event: PaymentMethodMessagingElementState): void; } /** * This feature is in Public Preview. It may not be feature complete and have breaking changes as we develop and update functionality. * Payment Method Messaging Element to display promotional information about available BNPL plans. * * @example * ```tsx * { * console.log('PMME loaded with result:', event); * } * /> * ``` * @param __namedParameters Props * @returns JSX.Element * @category ReactComponents */ export declare const PaymentMethodMessagingElement: ({ appearance, configuration, onStateChange, ...props }: Props) => React.JSX.Element; //# sourceMappingURL=PaymentMethodMessagingElement.d.ts.map