import { Feedback, FeedbackJSON } from "@scandit/web-datacapture-core"; import { Serializable } from "@scandit/web-datacapture-core/build/js/private/Serializable"; //#region src/main/api/LabelCaptureValidationFlowFeedback.d.ts interface LabelCaptureValidationFlowFeedbackJSON { scan: FeedbackJSON; adaptiveRecognitionResult: FeedbackJSON; } declare class LabelCaptureValidationFlowFeedback implements Serializable { scan: Feedback; adaptiveRecognitionResult: Feedback; constructor(); toJSONObject(): LabelCaptureValidationFlowFeedbackJSON; } //#endregion export { LabelCaptureValidationFlowFeedback, LabelCaptureValidationFlowFeedbackJSON };