import { FC, ReactNode, Ref } from "react"; import { IndicatorOptions } from "../types/scanview.types"; import { WebToMobileHandOffConfig } from "../components/ErrorModal/components/WebToMobile/WebToMobile"; type Props = { successIndicator?: ReactNode; errorIndicator?: ReactNode; handleRetryButton: () => void; frameDivRef: Ref; spinnerOptions: IndicatorOptions; webToMobileHandoffConfig?: WebToMobileHandOffConfig; cardScanApi?: any; backsideSupport?: boolean; }; declare const ScanFrame: FC; export default ScanFrame;