import { VerificationService } from '../../../lib/types/types'; export interface CaptchaComponentProps { verificationService: VerificationService; isErrored: boolean; } /** * CloudFlare Turnstile invisible captcha. Conditionally loads the captcha based on program theme and renders any related errors. */ export declare const CaptchaComponent: ({ verificationService, isErrored }: CaptchaComponentProps) => import("react/jsx-runtime").JSX.Element;