/**
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 * Status of the checkout session. Active: the checkout session is still in-progress. Completed: the payments of a checkout session is successful and the checkout session is completed. Expired: indicates that it expired and is no longer accepting any new payments.
 * @export
 * @enum {string}
 */
export declare const CheckoutSessionStatus: {
    readonly Active: "active";
    readonly Completed: "completed";
    readonly Expired: "expired";
};
export declare type CheckoutSessionStatus = typeof CheckoutSessionStatus[keyof typeof CheckoutSessionStatus];
