/** @jsxRuntime classic */ import { FC, HTMLAttributes, ReactNode } from "react"; import { ThemeRecord } from "./theme"; export interface ProviderProps extends HTMLAttributes { apiKey: string; recaptchaSiteKey?: string; disableSessionId?: boolean; baseUrl?: string; children?: ReactNode; theme?: ThemeRecord | null; } export declare const Provider: FC;