import { WrapperUIProps } from './types'; /** * Presentational wrapper component that renders the widget accordion UI with title, actions, options menu, and loading indicator. For uncontrolled usage without automatic widget store synchronization, use this instead of WidgetWrapper. * * @example * ```tsx * ]} * onChangeCollapsed={(e, collapsed) => console.log(collapsed)} * > *
Content
*
* ``` */ export declare function WrapperUI({ children, id, actions, sx, labels, options, onChangeCollapsed, }: WrapperUIProps): import("react/jsx-runtime").JSX.Element;