export declare const getFocusableElements: (container: Element) => HTMLElement[]; /** * Focus trap for dialogs (modal, drawer). Activates on open, cleans up on close/unmount. */ export declare function useFocusTrap(): { activate: (getContainer: () => HTMLElement | null) => void; deactivate: () => void; };