import React from "react"; import { TurnstileProps } from "../types"; declare global { interface Window { turnstile: { execute: (widgetId: string, options?: any) => void; render: (container: string | HTMLElement, options: any) => string; reset: (widgetId: string) => void; remove: (widgetId: string) => void; }; onloadTurnstileCallback?: () => void; } } export declare const Turnstile: React.FC;