export declare const PAYMENT_PROVIDERS: {
    readonly STRIPE: "stripe";
    readonly PAYPAL: "paypal";
};
export declare const PAYMENT_STATUSES: {
    readonly PENDING: "pending";
    readonly COMPLETED: "completed";
    readonly FAILED: "failed";
    readonly REFUNDED: "refunded";
    readonly CANCELLED: "cancelled";
};
