import { StripeError } from "@stripe/stripe-js";
import * as React from "react";
import { CustomStyles } from "../../types";
export interface DuffelPaymentsProps {
    paymentIntentClientToken: string;
    onSuccessfulPayment: () => void;
    onFailedPayment: (error: StripeError) => void;
    styles?: CustomStyles;
    debug?: boolean;
}
export declare const DuffelPayments: React.FC<DuffelPaymentsProps>;
