import React from 'react'; export default function Captcha({ setCaptchaId }: CaptchaProps): React.JSX.Element; type CaptchaProps = { setCaptchaId?: (val: string | null) => void; }; export {};