import React from 'react'; import type { InitStripeParams } from '../types'; /** * Stripe Provider Component Props */ export declare type Props = InitStripeParams & { children: React.ReactElement | React.ReactElement[]; }; export declare const initStripe: (params: InitStripeParams) => Promise; /** * StripeProvider Component * * @example * ```ts * * * * ``` * @param __namedParameters Props * @returns JSX.Element * @category ReactComponents */ export declare function StripeProvider({ children, publishableKey, merchantIdentifier, threeDSecureParams, stripeAccountId, urlScheme, setReturnUrlSchemeOnAndroid, }: Props): JSX.Element;