import { RefObject } from 'react'; import ReCAPTCHA, { ReCAPTCHAProps } from 'react-google-recaptcha'; import { CaptchaType } from '../typedoc'; export default function useReCAPTCHAProps({ captchaSiteKey, captchaRef, captchaType, onCaptchaChange, }: { captchaSiteKey: string | undefined; captchaRef: RefObject; captchaType: CaptchaType | undefined; onCaptchaChange: (token: string | null) => void; }): ReCAPTCHAProps;