import SelfieCapture from '@incodetech/welcome/camera/CaptureSelfie'; import type { WorkflowNode } from './types'; import { emptyFunc } from '@incode/utils'; type SelfieProps = { token: string; config: WorkflowNode['moduleConfiguration']; goNext: () => void; }; const Selfie = ({ token, config, goNext }: SelfieProps) => { return ( ); }; export default Selfie;