export type widgetId = number | string; export interface CaptchaRenderOptions { sitekey: string; callback?: (response: string) => void; "expired-callback"?: () => void; "error-callback"?: (e: any) => void; invisible?: boolean; [key: string]: any; }