export interface UIContainerContextValue { /** Get the container element (may be null if not mounted) */ getContainer: () => HTMLDivElement | null; } /** * Set up the container context (called by UIRoot) */ export declare function setUIContainerContext(value: UIContainerContextValue): void; /** * Hook to access the UI container element. * * This provides access to the UIRoot container for: * - Container query based responsiveness * - Portaling elements to the root * - Measuring container dimensions * * @example * ```svelte * * ``` */ export declare function useUIContainer(): UIContainerContextValue;