/** * Put only config options in this context. * context ignores `shouldComponentUpdate` */ export interface CheckoutContextValues { amount?: number; currency?: string; isCustomPayButton?: boolean; } export declare const CheckoutContext: import("react").Context; export declare const CheckoutContextProvider: import("react").Provider; export declare const useCheckoutContext: () => CheckoutContextValues;