import { FunctionComponent } from 'react'; import { DeepPartial } from '@mangopay/checkout-sdk-core'; import { Language, Theme, Translation } from '@mangopay/checkout-sdk-elements-core'; export interface CheckoutContainerProps { theme?: DeepPartial; language?: Translation | Language; amount?: number; currency?: string; } export declare const CheckoutContainer: FunctionComponent;