UNPKG

scanbot-web-sdk

Version:

Scanbot Web Document and Barcode Scanner SDK

15 lines (14 loc) 596 B
import React, { MutableRefObject } from "react"; import type { DocumentScanningFlow } from "../../../configuration/document/DocumentScanningFlow"; import type { SBDocument } from "../../model/sb-document"; declare class Props { configuration: DocumentScanningFlow; document: SBDocument; currentPosition: number | null; currentlyRotatingPageId: number | null; onRotationAnimationDone: MutableRefObject<null | (() => void)>; onGoToPage: (position: number) => void; buttonsEnabled: boolean; } export declare function Carousel(props: Props): React.JSX.Element; export {};