import { FloatingFocusManagerProps } from '@floating-ui/react';
import React from 'react';
export type NJPopoverContentProps = React.PropsWithChildren & {
    /**
     * Whether the children should be rendered inline or in a portal.
     */
    inline?: boolean;
    /**
     * Props for the FloatingFocusManager component.
     */
    focusManagerProps?: Omit<FloatingFocusManagerProps, 'context' | 'children'>;
};
export declare const NJPopoverContent: React.FC<NJPopoverContentProps>;
