import type { SvelteComponent } from "svelte"; import type { CaptchaProps, CaptchaComponentMethods } from "../../index.js"; import type { CaptchaState } from "@better-captcha/core"; import type { ReCaptchaV3Handle, RenderParameters } from "@better-captcha/core/providers/recaptcha-v3"; type ReCaptchaV3Props = Omit, string, ReCaptchaV3Handle>, "sitekey" | "endpoint"> & { sitekey: string }; declare class ReCaptchaV3 extends SvelteComponent implements CaptchaComponentMethods { execute(): Promise; reset(): void; destroy(): void; getResponse(): ReturnType | undefined; getComponentState(): CaptchaState; render(): Promise; } export default ReCaptchaV3; export type { ReCaptchaV3Handle, RenderParameters };