scanbot-web-sdk
Version:
Scanbot Web Document and Barcode Scanner SDK
13 lines (12 loc) • 411 B
TypeScript
import React from "react";
import { PreviewButton as PreviewButtonConfig } from "../../../configuration/document/CameraScreenConfiguration";
declare class Props {
count: number;
previewImageUrl: string | null;
config: PreviewButtonConfig;
enabled: boolean;
onClick: () => void;
pagesScanLimit: number;
}
export declare function PreviewButton(props: Props): React.JSX.Element;
export {};