/** * `FloatingPortal` includes tabbable logic handling for focus management. * For components that don't need tabbable logic, use `FloatingPortalLite`. * @ignore - internal component. */ export declare function FloatingPortalLite(props: FloatingPortalLite.Props): import("react").ReactPortal | null; declare namespace FloatingPortalLite { interface Props { children?: React.ReactNode; root?: HTMLElement | null | React.RefObject; } } export {};