import * as React from 'react'; import { type BaseUIComponentProps } from "../internals/types.mjs"; type PortalContainer = HTMLElement | ShadowRoot | React.RefObject | null; export interface FloatingPortalLiteState {} export interface FloatingPortalLiteProps extends BaseUIComponentProps<'div', TState> { container?: PortalContainer | undefined; } export declare namespace FloatingPortalLite { type State = FloatingPortalLiteState; type Props = FloatingPortalLiteProps; } export {};