import { Environment } from "../shared/env"; import { PaymentIntent } from "../shared/types"; import { MerchantCapability, SupportedNetwork } from "./clients/apple-pay-client"; interface ApplePayOptions { allowed_card_networks?: Array; allowed_card_types?: Array; domain_name?: string; } interface ApplePayParams { containerId: string; environment: Environment; paymentIntent: PaymentIntent; options?: ApplePayOptions; } export { type ApplePayParams, type ApplePayOptions };