/** * AriaStandaloneUI - Standalone React component for Aria SDK * * This component is mounted by AriaCore.init() and manages its own state * independently of any parent React context. It listens to window events * dispatched by AriaCore for programmatic control. */ import { type FC } from 'react'; import type { Theme } from '@/types'; interface AriaStandaloneUIProps { theme: Theme; triggerLabel?: string; container: HTMLElement; } export declare const AriaStandaloneUI: FC; export default AriaStandaloneUI; //# sourceMappingURL=AriaStandaloneUI.d.ts.map