import * as React from 'react'; import { type FloatingPortal } from "../floating-ui-react/index.js"; /** * `FloatingPortal` includes tabbable logic handling for focus management. * For components that don't need tabbable logic, use `FloatingPortalLite`. * @internal */ export declare const FloatingPortalLite: React.ForwardRefExoticComponent & React.RefAttributes>; export interface FloatingPortalLiteProps extends FloatingPortal.Props {} export declare namespace FloatingPortalLite { type Props = FloatingPortalLiteProps; }