scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
18 lines (17 loc) • 642 B
TypeScript
import React from "react";
import { AcknowledgementBottomBar } from "../../../configuration/document/AcknowledgementScreenConfiguration";
import { AcknowledgementWarning } from "../../controller/acknowledgment-screen-controller";
declare class Props {
visible: boolean;
isQualityAcceptable: boolean | null;
base64Image: string | null;
bottomBar: {
backgroundColor: string;
config: AcknowledgementBottomBar;
onRetake: () => void;
onAccept: () => void;
};
warning: AcknowledgementWarning;
}
export declare function AcknowledgementConfirmation(props: Props): React.JSX.Element;
export {};