import { AndroidConfig, ConfigPlugin } from '@expo/config-plugins'; declare type StripePluginProps = { /** * The iOS merchant ID used for enabling Apple Pay. * Without this, the error "Missing merchant identifier" will be thrown on iOS. */ merchantIdentifier: string | string[]; enableGooglePay: boolean; }; /** * Adds the following to the entitlements: * * com.apple.developer.in-app-payments * * [MERCHANT_IDENTIFIER] * */ export declare function setApplePayEntitlement(merchantIdentifiers: string | string[], entitlements: Record): Record; /** * Add a blank Swift file to the Xcode project for Swift compatibility. */ export declare const withNoopSwiftFile: ConfigPlugin; /** * Adds the following to AndroidManifest.xml: * * * ... * * */ export declare function setGooglePayMetaData(enabled: boolean, modResults: AndroidConfig.Manifest.AndroidManifest): AndroidConfig.Manifest.AndroidManifest; declare const _default: ConfigPlugin; export default _default;