import type { ViewProps, StyleProp, ViewStyle } from 'react-native'; import type { GooglePayPaymentMethod } from './specs/NativeGooglePayButtonComponent'; export interface Props extends ViewProps { allowedPaymentMethods: GooglePayPaymentMethod[]; type: number; theme: number; radius: number; onPress: () => void; disabled: boolean; style: StyleProp; } declare const GooglePayButton: ({ onPress, disabled, allowedPaymentMethods, theme, type, radius, style, }: Props) => import("react/jsx-runtime").JSX.Element; declare const GooglePayButtonConstants: import("./specs/NativeGooglePayButtonConstantsModule").Constants | null; export { GooglePayButton, GooglePayButtonConstants }; //# sourceMappingURL=GooglePayButton.d.ts.map