import { FC } from "react"; import { IndicatorOptions } from "../types/scanview.types"; import { WebToMobileHandOffConfig } from "../components/ErrorModal/components/WebToMobile/WebToMobile"; export type WebToMobileModalProps = { enableModel: boolean; cardScanApi: any; webToMobileHandoffConfig?: WebToMobileHandOffConfig; spinnerOptions: IndicatorOptions; backsideSupport?: boolean; }; declare const WebToMobileModal: FC; export default WebToMobileModal;