declare enum ChargeState {
    PENDING = "PENDING",
    FAILED = "FAILED",
    SUCCESSFUL = "SUCCESSFUL"
}
export { ChargeState };
