import Foundation
import ComplyCubeMobileSDK

public protocol StageParser {
    func canParse(_ input: Any) -> Bool
    /// Return nil to skip (e.g. "complete").
    func parse(_ input: Any) throws -> ComplyCubeMobileSDKStage?
}
