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<Omit<FloatingPortalLite.Props<any>, "ref"> & React.RefAttributes<HTMLDivElement>>;
export interface FloatingPortalLiteState {}
export interface FloatingPortalLiteProps<TState> extends FloatingPortal.Props<TState> {}
export declare namespace FloatingPortalLite {
  type State = FloatingPortalLiteState;
  type Props<TState> = FloatingPortalLiteProps<TState>;
}