import * as React from 'react'; export interface A11yWidgetProps { /** Extra classes applied to the trigger button (e.g. positioning utilities). */ className?: string; /** * Initial widget theme. When omitted or set to 'auto', the widget infers * the theme from the page's element and falls back to light. */ theme?: 'auto' | 'light' | 'dark' | null; /** * Widget UI language. Supports 'en', 'es', 'fr', 'de', 'pt', 'zh', 'ar', and 'hi'. * Regional variants such as 'en-US' or 'pt-BR' fall back to their base language. */ lang?: 'en' | 'es' | 'fr' | 'de' | 'pt' | 'zh' | 'ar' | 'hi' | string; } export declare function A11yWidget( props: A11yWidgetProps ): React.ReactElement | null; export default A11yWidget;