import { WidgetLoaderProps } from './types'; /** * Foundation component for all widgets that manages state initialization, synchronization with the widget store, and data transformation pipeline execution. * * @remarks * The WidgetLoader is stateless -- it manages data flow but does not render any UI. Always wrap it with WidgetWrapper for consistent widget appearance. * * @example * ```tsx * * * * * * ``` */ export declare function WidgetLoader>(props: WidgetLoaderProps): import('react').ReactNode;