import React from 'react'; import getErrorMessage from '../utils/getErrorMessage'; import { STEP } from '../constants'; export type FlashLivenessBodyProps = {}> = { step: typeof STEP[keyof typeof STEP]; currentProgress: number; errorCode: Parameters[0]; timeoutProps: { isTimeout: boolean; remaining: number; warningThreshold: number; }; isAutoCapturing: boolean; extraConfig?: ExtraConfig; }; declare const FlashLivenessBody: React.FC; export default FlashLivenessBody;