declare enum StripeDisputeStatus {
    WARNING_NEEDS_RESPONSE = "warning_needs_response",
    WARNING_UNDER_REVIEW = "warning_under_review",
    WARNING_CLOSED = "warning_closed",
    NEEDS_RESPONSE = "needs_response",
    UNDER_REVIEW = "under_review",
    WON = "won",
    LOST = "lost"
}
export { StripeDisputeStatus as default };
