import React from 'react'; interface XPayContextValues { children: React.ReactNode; xpay: { publishableKey: string; accountId: string; }; } export interface XPayContextType { xpay: { publishableKey: string; accountId: string; }; } export declare const XPayContext: React.Context; declare const XPayContextProvider: React.FC; export default XPayContextProvider;