import { FeedbackJSON, Feedback } from '@scandit/web-datacapture-core'; import { Serializable } from '@scandit/web-datacapture-core/build/js/private/Serializable'; interface LabelCaptureValidationFlowFeedbackJSON { scan: FeedbackJSON; adaptiveRecognitionResult: FeedbackJSON; } declare class LabelCaptureValidationFlowFeedback implements Serializable { scan: Feedback; adaptiveRecognitionResult: Feedback; constructor(); toJSONObject(): LabelCaptureValidationFlowFeedbackJSON; } export { LabelCaptureValidationFlowFeedback, type LabelCaptureValidationFlowFeedbackJSON };