UNPKG

@adyen/react-native

Version:

Wraps Adyen Checkout Drop-In and Components for iOS and Android for convenient use with React Native

24 lines 797 B
import { type StyleProp, type ViewStyle } from 'react-native'; export declare const GooglePayButtonTheme: { readonly DARK: 1; readonly LIGHT: 2; }; export declare const GooglePayButtonType: { readonly BUY: 1; readonly BOOK: 2; readonly CHECKOUT: 3; readonly DONATE: 4; readonly ORDER: 5; readonly PAY: 6; readonly SUBSCRIBE: 7; readonly PLAIN: 8; }; export interface GooglePayButtonProps { theme?: keyof typeof GooglePayButtonTheme; type?: keyof typeof GooglePayButtonType; radius?: number; onPress?: () => void; style?: StyleProp<ViewStyle>; } export declare const GooglePayButton: ({ theme, type, radius, onPress, style, }: GooglePayButtonProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=GooglePayButton.d.ts.map