import { FC, PropsWithoutRef } from 'react'; import { FloatingFocusManagerProps, FloatingOverlayProps } from '@floating-ui/react'; import { BoxProps } from '../Box'; export type Overlay = boolean | FloatingOverlayProps | 'transparent'; export type FocusManagerProps = Omit; export type FloatingUIContentProps = Omit & { /** * Specify if the content should render with an overlay. * Pass `true` for a default dimmed scrim, `'transparent'` for an invisible * click-blocking overlay, or a `FloatingOverlayProps` object (e.g. to lock * scroll or apply custom styling) for full control. Omit or `false` for none. * @default false */ overlay?: Overlay; /** * Specify if the content should render with an overlay * and not be positioned relative to the trigger * @default false */ skipFloatingStyles?: boolean; }; export declare const Content: FC>; export default Content;