import React from 'react'; import { type ElementProps } from '../../../../../types'; import { type UsePopperProps, type PopperWidth } from '../../@hook'; type UsePopperPropsWithoutRef = Omit; export type PopperContentProps = ElementProps<'div', React.PropsWithChildren>; export declare const PopperContent: React.ForwardRefExoticComponent, HTMLDivElement>, "ref">, "children">, "children" | "width" | "sticky" | "asChild" | "align" | "side" | "sideOffset" | "alignOffset" | "avoidCollisions" | "hideWhenDetached" | "collisionBoundary" | "collisionPadding" | "updatePositionStrategy"> & UsePopperPropsWithoutRef & { asChild?: boolean | undefined; width?: PopperWidth; } & { children?: React.ReactNode; } & React.RefAttributes>; export {}; //# sourceMappingURL=PopperContent.d.ts.map