import type { HostComponent, ViewProps } from 'react-native'; import type { DirectEventHandler, Int32, WithDefault } from 'react-native/Libraries/Types/CodegenTypes'; import { ShippingContact, ShippingMethod } from '../types/PlatformPay'; import { UnsafeMixed } from './utils'; type OnShippingMethodSelectedActionEvent = { shippingMethod: UnsafeMixed; }; type OnShippingContactSelectedActionEvent = { shippingContact: UnsafeMixed; }; type OnCouponCodeEnteredActionEvent = { couponCode: string; }; type OnOrderTrackingActionEvent = {}; export interface NativeProps extends ViewProps { disabled: boolean; type: Int32; buttonStyle: Int32; buttonBorderRadius?: WithDefault; onShippingMethodSelectedAction?: DirectEventHandler; onShippingContactSelectedAction?: DirectEventHandler; onCouponCodeEnteredAction?: DirectEventHandler; onOrderTrackingAction?: DirectEventHandler; hasShippingMethodCallback?: WithDefault; hasShippingContactCallback?: WithDefault; hasCouponCodeCallback?: WithDefault; hasOrderTrackingCallback?: WithDefault; } type ComponentType = HostComponent; declare const _default: ComponentType; export default _default; //# sourceMappingURL=NativeApplePayButton.d.ts.map